// this is a placeholder
$(document).ready(function(){ 
  $(".nav ul").superfish({
    delay:       600,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false
  }); 

  $(".quote").click(function() {
      window.location="/free-quote/";
  });
  
  $(".quote").hover(function() {
  	$(this).addClass("pointer");
  },function(){
    $(this).removeClass("pointer");
  });


	$('.blog h2').sifr({
		path:'/wp-content/themes/puroclean/images/',
		font:'myriad',
		color:'#A20033'	
	});
	$('.blog h3').sifr({
		path:'/wp-content/themes/puroclean/images/',
		font:'myriad',
		color:'#333333',
		link:'#333333',
		hover:'#000000'	
	});	


}); 
