﻿jQuery(function() {
    if (IsHomepage) {
        $("ul.slideShow").slideShow({
		    index: "div.slideShowIndex",
			time: 10000
		});	
	}
});


jQuery(function() {
    $("a.mcMapsWidget").colorbox({ width: "520px", inline: true, href: "#map_canvas",
            onComplete: function() { googleMapsInitialize(); }
    });
});

jQuery(function() {
    $("div.academies-list").makeTabs2({
        tabs: "ul.academies-tabs li",
        contents: "ul.academies-listing",
        activeIndex: $.urlParam('tab'),
        onShow: function(curTab, curTabContent) {
          //TO DO: do we add jscroll panne on the TABS?
        }
    });

});

jQuery(function() {
    $("div.personConn").each(function(){
        var root = $(this);
        var image = $("a",root);
        var hover = $("div.personInfo", root);
        $.fx.speeds.xslow = 500;
        root.hover(function() {
        hover.fadeIn("xslow")
        }, function() {
        hover.fadeOut("xslow")
        });
    });
});
