$(function() { 
	$('a').click(function(){ 
		$('.overlay').fadeIn();
		$('.under_construction').fadeIn();
	});
	
	$('.overlay').animate({ opacity : .85 });
	
	$('.close').click(function(){ 
		$('.overlay').fadeOut();
		$('#thankyou_box').fadeOut();
	});
	
	// Accordian Menu's 
	$('.accordion').parent().children().children('a').click(function() {
		$(this).next().slideToggle('fast');
		$(this).children().toggleClass('active');
		return false;
	}).next().hide();
	
	// Make the first image with the class of active
	$('#slideshow img:first').addClass('active');
	
});
