

/***********/

$(document).ready(function(){
	
	$("#cntr_menu li.main").bind("mouseenter",function(){
		$(this).children("a").css("background-position", "bottom");
	}).bind("mouseleave",function(){
		$(this).children("a").css("background-position", "top");
		
	});
});
