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" );
});