
//////////////////////////////////////////////////////////////////////////////////////////////// resto

menu=new Object();
menu.init=function(){

	departl=sel.position().left-15;
	departw=sel.width()+30;
	
	$("#indic").css("left",departl);
	$("#indic").css("width",departw);
	
	
	$(".mm").hover(
		function() {
			var posw = $(this).width()+30;
			var posl = $(this).position().left-15;
			
			$("#indic").stop().animate({
    			left: posl,
    			width: posw
    		},{duration: 500 ,easing:'easeOutBack'});
		},
		function() {
			$("#indic").stop().animate({
    			left: departl,
    			width: departw
    		},{duration: 500 ,easing:'easeOutBack'});
		}
	);
	
};
