
$(document).ready(function() {
	$('#sessiondh_popup').hover(function(){

		$('#twr_sessiondh_popup').show();
	},
	function()
	{
		$('#twr_sessiondh_popup').hide();
	});
	$('#elite99_popup').hover(function(){

		$('#twr_elite99_popup').show();
	},
	function()
	{
		$('#twr_elite99_popup').hide();
	});
	$('#topfuel99_popup').hover(function(){

		$('#twr_topfuel99_popup').show();
	},
	function()
	{
		$('#twr_topfuel99_popup').hide();
	});
	
	$(document).pngFix();
	
	$('#accordion').accordion({ header: 'h4', autoHeight: false, clearStyle: true });
	$('#xcaccordion').accordion({ header: 'h4', autoHeight: false, clearStyle: true });


	$('#pics').cycle('fade');
	
	
});
function switchViews( newActiveTab ){
	
	$('#overview').removeClass('selected');
	$('#twr_overview_container').hide();
	$('#riders').removeClass('selected');
	$('#twr_riders_container').hide();
	$('#dhRiders').removeClass('selected');
	$('#twr_dhRiders_container').hide();
	$('#staff').removeClass('selected');
	$('#twr_staff_container').hide();
	$('#bikes').removeClass('selected');
	$('#twr_bikes_container').hide();
	$('#sponsors').removeClass('selected');
	$('#twr_sponsors_container').hide();
	$('#twr_dh_calander').hide();
	$('#twr_xc_calander').hide();
	if( newActiveTab == 'dhRiders'){
		$('#twr_dh_calander').show();
	}
	if(newActiveTab == 'riders'){
		$('#twr_xc_calander').show();
		
	}
	$('#'+newActiveTab).addClass('selected');
	$('#twr_'+newActiveTab+'_container').show();
}