$(document).ready(function(){
		
	$("#mainnav a").hover(
		
		function() {
			
				$(this).animate({
				
				marginTop: '+=21px'
				
				},200
				);
		
		
	  	}, 
  
		function () {
		
			$(this).animate({
			
			marginTop: '-=21px'
			
			}, 500
			);
		
		}
	);


});

$(document).ready(function() {
	$('#slideshow').cycle({
		fx: 'fade'
	});
});

$(document).ready(function() {
	$('#leftbox').cycle({
		fx: 'fade',
		timeout: 5000
	});
});
