var menuSystem = {
init: function(){
$("#mainmenu li").bind("mouseenter",function(){

$(this).animate( { marginRight:"10px", backgroundColor:"#fff",color:"#71b5ff"  }, "normal"  );
											 
});

$("#mainmenu li").bind("mouseleave",function(){
$(this).animate( { marginRight:"0px", backgroundColor:"#71b5ff",color:"#fff"  }, "normal"  );											 
});


/*
var stars2 = $$(".s_input");
stars2.each(function(star, i) {


$(star).addEvents({focus: function(){
		
		if(this.get('value') == "Recherche")
		{
		this.set('value','');
		}
		this.morph('.s_input_focus');
					  },
	blur: function(){
		
		if(this.get('value') == "")
		{
		this.set('value','Recherche');
		}
		this.morph('.s_input');
	
		}   }); });
*/

}
};
$(document).ready(function(){
menuSystem.init();
});