$(document).ready(function() {
	


	/* Function to clear all form input elements first time they are clicked */
	
	$('input[type=text], input[type=password], input[type=email], input[type=number], input[type=search], textarea').attr("onFocus","this.value=''; this.onfocus=null;");
	
	
	$('.toggleWrapper').addClass('hidden');

	$('.toggleButton').click(function(){
	
		$(this).toggle();
		
		$(this).next(".toggleWrapper").slideToggle('slow');
		
	});
	
	
	
	/* jQuery Tools Simple Overlay  */
	
	$(".overlayTrigger[rel]").overlay({
		mask: '#222' 
	});
	


});
