

// When the document is ready...
$(document).ready(function(){

	// Slide Show
	$('#slide_show').cycle({fx:'fade', timeout:9000,continuous:0,speed:1000,random:1,sync:1,cleartype:true,cleartypeNoBg:true});
	
	
	// Animate the menu buttons:
	$(".main_menu").hover(function(){$(this).addClass("menu_hover","5000");},
						  function(){$(this).removeClass("menu_hover","5000");}
						  );

});	
	
