/* [jQuery] */
$(function() {

	/* [DropDown Menu] */	
	function addMega(){
		$(this).addClass("hovering");
		}
		function removeMega(){
		$(this).removeClass("hovering");
		}
	var megaConfig = {
		interval: 100,
		sensitivity: 4,
		over: addMega,
		timeout: 400,
		out: removeMega
	}
	$("#mainmenu ul#dropdown li").hoverIntent(megaConfig)
	/* [/End DropDown Menu] */
	
	/* [Slideshow] */
	$('#slide').DDSlider({ 
	trans: 'fading', 
	delay: 50, 
	ease: 'swing', 
	waitTime: 6000, 
	duration: 500, 
	stopSlide: 1, 
	bars: 15, 
	columns: 9, 
	rows: 3, 
	selector: null, 
	arrowNext: null, 
	arrowPrev: null 
	});		
	/* [/end Slideshow] */
	
});	
/* [/End jQuery] */
