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