jQuery().ready(function(){

	$("#present a").mouseover(function(){
		$("#present").css({'background-position' : 'left bottom'});
	});
	
	$("#present a").mouseout(function(){
		$("#present").css({'background-position' : 'left top'});
	});

});
