function validate() {
	if (document.contact_form.secret_code.value = 'booya')
		return true;
	return false;
}

$(document).ready(function(){
	// Navigation
	var config = {    
	     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
	     interval: 40, // number = milliseconds for onMouseOver polling interval    
	     over: function(){$(this).children('ul').slideDown("fast")}, // function = onMouseOver callback (REQUIRED)    
	     timeout: 50, // number = milliseconds delay before onMouseOut    
	     out: function(){$(this).children('ul').slideUp("fast")} // function = onMouseOut callback (REQUIRED)    
	};
	var primary_navigation = $("#Navigation").children();
	primary_navigation.hoverIntent( config );
	
	primary_navigation.hover(function(){
		$(this).addClass('hovering');
	},function(){
		$(this).removeClass('hovering');
	});

	$('#Photobar').cycle({ 
		fx: 'fade',
		speed:    3000,
		timeout:  9000,
		delay:    -6000
	});

	// Lightbox
	$('a[rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	
	// WordTheatre replace
	$("#main *").replaceText( /WordTheatre/gi, "WordTheatre\u00ae" );

	$("a.flowplayer").html('');
	flowplayer("a.flowplayer", "/player/flowplayer-3.1.1.swf", {			
			clip: {
				autoPlay: false, 
				autoBuffering: true 
			},
		plugins: {
	       controls:  { 
				playlist: false,
	            backgroundColor: '#280423',
	            backgroundGradient: '#000000',             
	            buttonColor: '#350A2F', 
	            all:false, 
	            scrubber:true, 
	            mute:true, 
	            height:30, 
	            progressColor: '#d8150e', 
	            bufferColor: '#111',
	            width: 320 
	        }
	         
		}
	});
});
