$(document).ready( function() { //onload

			// .................. css tweaks



			//last li border no
			$(".list_with_dates li:last").css("border-bottom", "none");

			//column  fix
			$(".columns3 .column:last").css("margin-right", "0");



			//menu
			$(".menu li").hover(
			  function () {
				$(this).addClass("active_");
				$(this).children('.sub_menu').show();
				$(this).siblings().children('.sub_menu').hide();

			  }, function() {

				  $(this).removeClass('active_');
				  $(this).children('.sub_menu').hide();

			  });

			// font - can be better :)
			  $('a#font_up').click(function(){
											$('div.body_news p').css("font-size","14px").css("line-height","140%");
											});
			  $('a#font_down').click(function(){
											$('div.body_news p').css("font-size","11px").css("line-height","150%");
											});


		});





