$(document).ready(function() {
// HOVER-FADE FUNCTIONS$("a.fade img").hover(function () {// animate opacity to full$(this).stop().animate({opacity: 0.65}, 200);},// on mouse outfunction () {// animate opacity to nill$(this).stop().animate({opacity: 1}, 200);});


//CLEAR FORM FIELDS
$("input#zipcode").focus(function () {
if ($(this).val() == "Enter Zip") {
$(this).val("");
}
});

//VIDEO
$(".playtrailer").click(function() {
$("#videoplayer").html('<iframe width="520" height="318" src="http://www.youtube.com/embed/HC_uTuXzWEY?modestbranding=1&version=3&hl=en_US&rel=0&theme=dark&color=red&hd=1&autoplay=1" frameborder="0" allowfullscreen></iframe>');
return false;  });


/*
//QUOTES
$('#quotes .slide');	setInterval(function(){		$('#quotes .slide').filter(':visible').fadeOut(300,function(){			if($(this).next('li.slide').size()){				$(this).next().fadeIn(300);			} else{				$('#quotes .slide').eq(0).fadeIn(300);			}		});	},9000);

*/

});//END DOM LOADING

