window.onload=(function(){	
		left_menu();
		country_links();
		f_menu();
		f_pager();
});
function left_menu(){
			$(".left_side .div_ch").click(function(){
					$(this).parents("li").toggleClass("child");								 
				});
		}

function country_links(){
			$(".country_t .links .link").hover(function(){
					$(this).find(".linkbg").toggleClass("l_hov");
				},function(){
					$(this).find(".linkbg").removeClass("l_hov");				
				});
		}

function f_menu(){
	$(".menu .contentmenu").hover(function(){
	 $(this).css({background:'#f7de07'});
	}, function(){$(this).css({background:'url(/images/menu_bg.png) repeat-x', border:'solid 1px #ffffff'}); 	
	});
}

function f_pager(){
	$("b").parents("td.pagerf").css({background:'#f6ed05'});
}

