$(function() {
        $('#screenshots a').lightBox();
    });

function toggleContactForm(){
	if($("#contactForm").css("display") == "none"){
		$("#contactForm").fadeIn();
		//alert('none');
	}else{
 		$("#contactForm").fadeOut();
	}
}


function sendMail(){
	
	from = $("#from").val();
	subject = $("#subject").val();
	body = $("#body").val();
	mail = $("#mail").val();
	
	$("#contactFormHtml").fadeOut("fast", function(){
	
		$("#loading").fadeIn("fast", function(){
			$.get("ajax/sendMail.php?from="+from+"&subject="+subject+"&body="+body+"&mail="+mail,
			function(data){
				$("#loading").html(data);
				
			}
			
			);
		}
		)
	}
	)
	
	return false;
}
