
$(document).ready(function(){
	$('a[rel*=facebox]').facebox() 
});
function closeBox(){
	jQuery(document).trigger('close.facebox');
};

$('#bannerImages').cycle({
	fx: 'fade',
	speed: 1000,
	timeout: 5000
});

function checkSent(){

	tmpVals="contactName=" + document.getElementById('contactName').value;
	tmpVals+="&contactEmail=" + document.getElementById('contactEmail').value;
	tmpVals+="&contactPhone=" + document.getElementById('contactPhone').value;
	tmpVals+="&contactSubject=" + document.getElementById('contactSubject').value;
	tmpVals+="&contactComment=" + document.getElementById('contactComment').value;
	
	  jQuery.get('inquiry.php?'+tmpVals, function(data) {
	
			if(data == 'sent ok'){
				jQuery.get('includes/contact_thankyou.php', function(thankyou){
					jQuery.facebox(thankyou);
				})		
			} else {
				document.getElementById('error').innerHTML=data;
			}	
	  })
	  
}


var image1= new Image();
var image2= new Image();
var image3= new Image();
var image4= new Image();

image1.src = "images/nav_aboutus_hover.png";
image2.src = "images/nav_parents_hover.png";
image3.src = "images/nav_studentlife_hover.png";
image4.src = "images/nav_registration_hover.png";




