$(function() {

	$('#next').click(function(){ 
		$('#timenav3').animate({'margin-left': '0'});
		$('#previous').show();
		$('#next').hide();			

	});
	$('#previous').click(function(){
		$('#timenav3').animate({'margin-left': '760px'});
		$('#next').show();
		$('#previous').hide();	
	});
  
});
