$(document).ready(function() {

	$("#footer_left").stop().animate({left:'-260px'},0);

	$("#footer_left").mouseenter(function() {
		$("#footer_left").stop().animate({left:'0px'},500);
	  }).mouseleave(function(){
		$("#footer_left").stop().animate({left:'-260px'},500);
	});	
});


