/* Quote-Contact Form Reveal */
$(document).ready(function(){
	var opened = false;
	$(".cta-quote").click(function(){
		if(opened){
			$("#quote-form").animate({"top": "-=250px"}, "slow");
		}else{
			$("#quote-form").animate({"top": "+=250px"}, "slow");
		}
		$("#quote-form-content").slideToggle("slow");
		$(".cta-quote .close").toggle();
		opened = opened ? false : true;
	});
});
$(document).ready(function(){
	var opened = false;
	$(".cta-quote-back").click(function(){
		if(opened){
			$("#quote-form").animate({"top": "-=250px"}, "slow");
		}else{
			$("#quote-form").animate({"top": "+=250px"}, "slow");
		}
		$("#quote-form-content").slideToggle("slow");
		$(".cta-quote-back .close").toggle();
		opened = opened ? false : true;
	});
});

$(function () {
			$('#slider').anythingSlider({
				width               : 880,        // if resizeContent is false, this is the default width if panel size is not defined
				height              : 305,        // if resizeContent is false, this is the default height if panel size is not defined
				startStopped        : false,       // If autoPlay is on, this can force it to start stopped
				buildArrows         : false,      // If true, builds the forwards and backwards buttons
  				buildNavigation     : false, 
				pauseOnHover        : true,
				delay               : 7000,
			});

		});

////////////////////////////////////////////////////////////////////////////////////////

$(document).ready(function(){
	
	$('#searchbox').watermark('Search Bulldoze...');

});
