$(document).ready(function(){ 
	
	//Masthead slideshow
	$('#slideshow').cycle({
		timeout: 7000, 
	    speed:   2000
	});	
	
	//Valid way to open links in new window
	$("a[rel='external']").click(function(){window.open(this.href); return false;});
	
	// Swap the header image for Dragway Tickets
	$('a.drag-thick').click(function() {
		$('#TB_title').addClass('TB_title_dragway');
		$('#TB_title').removeClass('TB_title_speedway');
	});
	
	$('a.speed-thick').click(function() {
		$('#TB_title').addClass('TB_title_speedway');
		$('#TB_title').removeClass('TB_title_dragway');
	});
		
});