Elimde alttaki gibi bir betik var burada tıklanınca değil sayfa açılınca direk çalışmasını istiyorum

	/////// enter
	$(".enter .over").css({width:0});
	$(".enter .over2").css({marginLeft:-30});
	$(".enter").hover(function() {
	$(this).find(".over").stop().animate({width:30 }, 400, 'easeOutExpo');		    
	$(this).find(".over2").stop().animate({marginLeft:0 }, 400, 'easeInOutExpo');
	},function(){
	    $(this).find(".over").stop().animate({width:0 }, 400, 'easeOutExpo' );
	    $(this).find(".over2").stop().animate({marginLeft:-30 }, 400, 'easeInOutExpo');		   
	}).click(function() { enter();  });