$(function(){
	//var page = location.pathname.split('/').reverse()[0];
	
	$("div.imageContainer").toggle(
	  function () {
	    $(this).stop();
	    $(this).animate({
	    	left:"-457px"	    	
	    },400);
	  },
	  function () {
	    $(this).stop();
	    $(this).animate({
	    	left:"0px"	    	
	    },400);
	  }
	);
	
});