$(function() {
	$(".megamenu").megaMenu('hover_fade');
});
			
jQuery(function($){
	$.supersized({
		// Functionality
		slide_interval          :   6000,		// Length between transitions
		transition              :   1, 			// 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
		transition_speed		:	700,		// Speed of transition
		min_width		        :   0,		//Min width allowed (in pixels)
		min_height		        :   0,		//Min height allowed (in pixels)
		vertical_center         :   0,		//Vertically center background
		horizontal_center       :   1,		//Horizontally center background
		// Components							
		slide_links				:	'blank',	// Individual links for each slide (Options: false, 'num', 'name', 'blank')
		slides 					:  	[			// Slideshow Images
		                                {image : '../img/background1.jpg', url : 'media_player.html'}
		                           	]
	});
	if ($('#supersized').length) {
		Shadowbox.init({skipSetup: true,
						players: ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
		});
		Shadowbox.setup("a.slidelink", {
			title:      "",
			height:     480,
			width:      640
		});
		
	}
});
