/* Author: 

*/

//--------------------------------------------------------------------------- Click to Print ->>
$(".click-to-print").click(function printPage() { print(document); });



//--------------------------------------------------------------------------- Start Slider ->>

$(function(){
	$("#slides").slides({
    	preload: true,
    	preloadImage: 'img/loading.gif',
    	play: 6000,
    	pause: 3000,
    	hoverPause: true
	});
});



//--------------------------------------------------------------------------- Click to Contact ->>
/* Author: Katherine Compton, Benjamin Brannaka, Frank Stallone

*/

$(".click-to-contact").click(function() {
  $("#quick-contact-box").toggleClass("display-none");
});


$('.quick-contact-form').attr('action','/?validate=1');


  if (getParameterByName('validate')) {
	   $("#quick-contact-box").toggleClass("display-none");
  }

function getParameterByName(name)
{
  name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
  var regexS = "[\\?&]" + name + "=([^&#]*)";
  var regex = new RegExp(regexS);
  var results = regex.exec(window.location.href);
  if(results == null)
    return false;
  else
    return decodeURIComponent(results[1].replace(/\+/g, " "));
}

