	
	$(document).ready(function() {
									   
		// Create Mega Menus
		function addMega() {
			//$(this).addClass("hover");
			$(this).addClass("dropon");
			$(this).children('div.drop').fadeIn();
		}
		function removeMega() {
			$(this).children('div.drop').fadeOut(250);
			$(this).removeClass("dropon");
		}
		var megaConfig = {
			 interval: 50,
			 sensitivity: 6,
			 over: addMega,
			 timeout: 300,
			 out: removeMega
		};
		$("li.dropli").hoverIntent(megaConfig);
		
		sLightbox.initialize();
		
		Cufon.now();
		
	});