jQuery(document).ready(function(){
	
	// Lightbox
	$(function() {
		$(".lightbox").lightbox();
	});

	//Highlights form feilds
	$(".text-input").focus(function () {
         $(this).css('background-color','#fff0a8');
		 
		 $i = $(this).val();
		  
		 
			 $(this).val('');

		 
    });
	$(".text-input").blur(function () {
         $(this).css('background-color','#fff');
		 if($(this).val() == '' ){ 
		 	$(this).val($i);
		 }
		 
    });		
	

	//hides the slidedown part
	$(".slidedown").css("display","none");
	
	//hides the hide message
	$(".triggerOff").hide();
			
	
	//when clicked slides the slidedown, hides the original message and shows the new one
	$(".triggerOn").click(function () { 
		$(".slidedown").slideDown();
		
		$(".triggerOn").hide();
		$(".triggerOff").show();
	});	

	$(".triggerOff").click(function () { 
		$(".slidedown").slideUp();
		
		$(".triggerOn").show();
		$(".triggerOff").hide();
	});	

	
});	
	


