$(document).ready(function () {

    //Slide down navigation menu
    jQuery(".navMain ul > li").mouseover(function () {
        jQuery(this).children("ul").stop(true, true);
        jQuery(this).children("ul").slideDown(400);
    }).mouseleave(function () {
        jQuery(this).children("ul").slideUp(200);
    });


    

    //Scroll the Home Page images
    $(".panelExpander").carouFredSel({
	width:926,
	items:{start:1},	
	scroll:{items:1, pauseOnHover:true, duration:2000, easing:'linear'},
	auto:{pauseDuration:5000},
	next:{button:'.next_slide'},			
	prev:{button:'.prev_slide'}
    });
	
    //Set class for current active page in main navigation
    var pathname = window.location.pathname;
    var linkHref = "";
    $(".navMain ul li a").each(function () {
        linkHref = $(this).attr("href");
        if (pathname.indexOf(linkHref.substring(0, (linkHref.length - 5))) > -1 && pathname.indexOf('home') != -1) {
            $(this).parent("li").addClass("active");
        }
    });

    //Colorbox - Modals
    $("a.colorbox_form").colorbox({ opacity: "0.75", width: "700px", height: "500px", iframe: true });
    $("a.galleryImage").colorbox({ opacity:"0.75", photo:true, maxHeight:"75%", maxWidth:"75%" });

    // Add striping to tables
    $(".stripeMe tr:even").addClass("alt");


   //Content Slider
   $('#content_slider').jshowoff({ autoPlay:true, controls:false, effect:'fade', hoverPause:false, speed:7000, links:true });	

   
   //Sponsor Rotator
   $('.sponsor_image').jshowoff({ autoPlay:true, controls:false, effect:'none', hoverPause:false, speed:10000, changeSpeed:2000, links:false });	

});
