$(document).ready(function() {
	menu_link_hover();
	slideshow();
});

function menu_link_hover() {
	$(".menu_button").hover(
			function () { $('img', this).css('margin-top','-20px'); }, 
			function () { $('img', this).css('margin-top','0px'); });
}  

function slideshow(){
	$('.slideshow').cycle({ 
	    fx:    'fade', 
	    speed:  3500,
	    timeout: 3000
	 });
	
	
}
