
/*///////////
START JQUERY
///////////*/

$(function() {

/*///////////
jquery pseudo hover for nav
///////////*/

	$('.dropdown').hover(function(){
		   $(this).addClass('sfhover');
	}, function() {
		   $(this).removeClass('sfhover');
	});
	
/*///////////
jquery ui tabs
///////////*/

	$( "#tabs" ).tabs();
	
/* searchbox clearing */

	$('.callout #zipcode-element input').focus( function() {
		if ($(this).val() == 'enter zipcode') {
			$(this).val('');
		}
	});
	$('.callout #zipcode-element input').blur( function() {
		if ($(this).val() == '') {
			$(this).val('enter zipcode');
		}
	});
	
	$('#prositeLink').click( function(e) {
		e.preventDefault();
		$('#prositeModal').modal({
			containerId: "prositeModalContainer",
			overlayClose: true,
			closeClass: 'close-prosite-modal'
		});
	});

});

/*///////////
video modal
///////////*/

function playMovie(movieName) {
	$("#videoModal").modal({
		overlayId: 'vid-overlay',
		onShow: function(dialog) {
			var flashvars = {
				pathToVideo: "/images/flash/ads/flvs/" + movieName
			};
			var params = {
				wmode: "transparent"
			};
			swfobject.embedSWF("/images/flash/ads/videoPlayerModal.swf", "flashPlaceholder-ads", "487", "406", "9.0.0", false, flashvars, params);
		}
	});
}
