
//This is the contac form script
jQuery(document).ready(function(){
		jQuery("form#contact-form").submit(function(){
			var str = jQuery("form").serialize();
			 jQuery.ajax({
			 type: "POST",
			 url: "contactform/contact.php",
			 data: str,
			 success: function(msg){
				jQuery("#note").ajaxComplete(function(event, request, settings){
						if(msg == 'OK'){ // Message Sent? Show the 'Thank You' message and hide the form
							  result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
							  jQuery("#fields").hide();
						}else{
							  result = msg;
				  }
			   jQuery(this).html(result);
				  });
				 }});
			   return false;
				});
			 });

//end contact form script

//lightBox Script
jQuery(document).ready(function(){
		jQuery('a.lightbox1').lightBox();
		jQuery('a.lightbox2').lightBox();
		jQuery('a.lightbox3').lightBox();
	}); 
// end lightBox Script
