var otherSponsorsTimeout;
function comingSoonMenu(){
	alert("This material is still being prepared and will be available soon.");
}
function conferenceOverMenu(){
	alert("This material is no longer available as the conference has already been held.");
}
function fadeOtherSponsors(sp1,sp2){
	$('#'+sp1).fadeOut(2000,function(){
		$('#'+sp2).fadeIn(2000, function(){
			clearTimeout(otherSponsorsTimeout);
			otherSponsorsTimeout=setTimeout("fadeOtherSponsors('"+sp2+"','"+sp1+"');",5000);
		});
	});
}
$(document).ready(function(){
	$('a[rel=blank]').attr("target","_blank");
	otherSponsorsTimeout=setTimeout("fadeOtherSponsors('other-1','other-2');",5000);
	$('.conferenceOverMenu').click(function(){ conferenceOverMenu(); return false; });
});