// JavaScript Document


$(document).ready(
	function() {
		
		$(".midnav a").hover(function(){
		$(this).children("img").css('margin-top', '-30px');
		},function(){
		$(this).children("img").css('margin-top', '0px');
		});
		
		
		$('.slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});

		
	});

