$(document).ready(function() {
	$("#nav li a").hover(function(){
		var position = {};
		var move = $(this).parent('li').position(position);
		$("#slider").animate(move, "slow").dequeue();
	},
	function(){
		//Pass nothing or jQuery will throw an error...
	});
	

});
