$(document).ready(function(){
	// booking form
	$(".otherspecify").hide();
	//$("form input:radio").show();


	$(".gpaformother").click(function () { 
		$(".otherspecify").show(); 
	});



	//validator
	$("#contactform").validate();
	
	
	//datepicker
	//$(".date-pick").datePicker();
	
	// fancybox
	$("a[rel='jquerygallery']").fancybox();
});

