$(document).ready(function() {
	$.preloadCssImages();
	
    function addMega(){
        $(this).addClass("hovering");
        }

    function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 250,
         sensitivity: 4,
         over: addMega,
         timeout: 500,
         out: removeMega
    };

    $("li.mega").hoverIntent(megaConfig);

	$('#s3slider').s3Slider({
	    timeOut: 7000
	 });

});