$(document).ready(function(){
	
	$
	
	$("#csubmit").click(function(){
		var err="";
		$(".cform").each(function(){
			if($(this).val() == ""){
				$(this).css("border", "1px solid #CC0000");
				err = err + "Please enter your "+ $(this).attr('title') +"\n";
			}else{
				$(this).css("border", "1px solid #CCCCCC");
			}
		});
		if(err.length>0){
			alert(err);
		}else{
			$("#cform").submit();
		}
	});
	
	if($.jqURL.get("enquiry")=="ok"){
		$("#enquiry-form").html("<h2>Thank you for your enquiry, we will be in contact shortly.</h2>");
	}
	
	$("#about-images a").lightBox();
});