// 2011HolidayFreeShipping.js
// Adds functionality for Free Shipping Banner
// ----------------------------------------------------------------------------------------------------- //
// Author: Parris Lucas, Charles & Colvard
// ---------------------------------------------------------------------------------------------------- //
// What's in here:
// 1) If guest clicks more details on banner pop up a dialog with information
// 2) 
// ---------------------------------------------------------------------------------------------------- //




jQuery('document').ready(function($) {    
    
    // increase the default animation speed to exaggerate the effect
	$.fx.speeds._default = 1000;
	$(function() {
		$( "#dialog" ).dialog({
			autoOpen: false,
			show: "blind",
			hide: "blind",
			minHeight: 300,
			minWidth: 500,
			
			resizable: false,
			draggable: false,
			closeOnEscape: true,
			position: ['left','top'],
			zIndex: 4000,
			buttons: {
				Close: function() {
					$( this ).dialog( "close" );
				}
			}
		});

		$( "#shipping_banner_map" ).click(function() {
			$( "#dialog" ).dialog( "open" );
			return false;
		});
		$(".cms-home").click(function() {
			if($( "#dialog" ).dialog( "isOpen" )){
				$( "#dialog" ).dialog( "close" );
			}
		});
	});
});
