// JavaScript Document
$(document).ready(function(){
	$('#eventTabs li a').click(function () {
		$('#eventTabs li a').removeClass('selected');
		$(this).addClass('selected');
		$('.tabcontent').hide().filter(this.hash).fadeIn('slow');
        
        return false;
    }).filter(':first').click();	
	
$("#dropdownContainer1").hover( function () { $("#subcontent1").show(); }, function () { $("#subcontent1").hide(); return false; } ); 
$("#dropdownContainer2").hover( function () { $("#subcontent2").show(); }, function () { $("#subcontent2").hide(); return false; } ); 
$("#dropdownContainer3").hover( function () { $("#subcontent3").show(); }, function () { $("#subcontent3").hide(); return false; } ); 
$("#dropdownContainer4").hover( function () { $("#subcontent4").show(); }, function () { $("#subcontent4").hide(); return false; } ); 
	
});
