jQuery("#menu_inside div").hover(
function(){
	//alert('1');
	jQuery(this).css({backgroundPosition:"bottom center"});
},
function(){
	//alert('2');
	jQuery(this).css({backgroundPosition:"top center"});
}
)
