$(document).ready(function(){ 
		
		//Navigation
		$("ul.sf-menu").supersubs().superfish({ 
         //pathClass:  'current',
		 delay: 200,
		 dropShadows: false
        });
		
		//Reveals images when page fully loaded
		$("img").removeClass("hide_init");
		
		//Loads videos in player
		$(".video_playlist a").click(function(){ 
    	// capture the url to load from the href
		$(".video_playlist li a").removeClass("active");
		$(this).addClass("active");
    	var urlLoad = $(this).attr("href");
		$("#video_player").load(urlLoad);
    	// just make sure the page does not reload 
		if(urlLoad.indexOf("multimedia") == -1) {
    	return false;
		}
  		}); 
});

//Rotate Global Sponsors
$('#sponsors_cycle').cycle({ 
    delay:  200, 
    speed:  500,
    before: onBefore 
}); 

//Rotate Local Sponsors
$('#sponsors_cycle_local').cycle({ 
    delay:  200, 
    speed:  500,
    before: onBeforeLocal
}); 

//Add title to Global Sponsors
function onBefore() { 
    $('#title') 
        .html(this.alt);  
    $(this).css({left: '50%', marginLeft: -$(this).width()/2});
}; 

//Add title to Local Sponsors
function onBeforeLocal() { 
    $('#title_local') 
        .html(this.alt);
	$(this).css({left: '50%', marginLeft: -$(this).width()/2});
};