	
	
	/* CYCLE PLUGIN BEGIN */

	$(document).ready(function() {
		$("#slideshow").css("overflow", "hidden");
		
		$("ul#slides").cycle({
			fx: 'fade',
			pause: 1,
			timeout: 5000,
			prev: '#prev',
			next: '#next'
		});
	

	/* CYCLE PLUGIN END */
	
	
	
	
	/* DRAWER EFFECT */
	
		$("#butSiteMap").click(function(){
			$("#siteMap").slideToggle();
		});



	
	/* END DRAWER EFFECT */
	
	
	/* MAIN NAVIGATION */
	
	
		$(".menuSection").hover(function(){
	        $(this).children(".subMenuWrap").fadeIn(200);
	    },function(){
	        $(this).children(".subMenuWrap").fadeOut(200);
	    });
    
    });
