$(function(){	$('#move:not(body#index #move)').css({display:'block',marginLeft:$(window).width(),opacity:'0'});	$('#move:not(body#index #move)').animate({marginLeft:'0px',opacity:'1'},500);	$('body#index #move').css({display:'block',opacity:'0'});	$('body#index #move').animate({opacity:'1'},500);	$('a').click(function(){		var pass = $(this).attr("href");		$('#move').animate({marginLeft:'-=' + $(window).width() + 'px',opacity:'0'},500,function(){			location.href = pass;		});	    return false;	});});
