/*!
 * In Store Pickup (ISPU) v1.0
 *
 * Date: November 11 2010
 *
 * Copyright Benjamin Moore 2010
 *
 * ISPU is a jQuery plugin to interact with the Benjamin Moore Store Locator server.
 *
 * Requirements:
 * jQuery 1.3+
 * Fancybox 1.4.3
 *
 */

var ispu = {

	selectStoreHandler: function() {	
		if (ispu.ispustatus) {
			alert('OK');
		} else {
			alert('Fail');
		}		
	},
	getStoreById: function(storeId) {
		ispu.store = ispu.sampleObject;
		ispu.ispustatus = true;
		ispu.getStoreHandler();
	},
	getStoreHandler: function() {
		if (ispu.ispustatus) {
			alert('OK');
		} else {
			alert('Fail');
		}
	},
	sampleObject: {
		"storeId"	:	"000811",
		"path"		:	"/us/ny/huntington/aboffs-paints-wlc-01",
		"name"		:	"ABOFF'S PAINTS",
		"address"	:	"532 NEW YORK AVE",
		"city"		:	"HUNTINGTON",
		"state"		:	"NY",
		"zip"		:	"11743",
		"country"	:	"US",
		"phone"		:	"(631)427-2000",
		"web"		:	"aboffs.benmoorepaints.com",
		"rwsp"		:	"Y",
		"latitude"	:	"40.86438",
		"longitude"	:	"-73.42251",
		"openingSoon":	"",
		"displayHours":	"Y",
		"monOpen"	:	"7:00",
		"monOpen"	:	"7:00",
		"monClose"	:	"7:00",
		"tueOpen"	:	"7:00",
		"tueClose"	:	"6:00",
		"wedOpen"	:	"7:00",
		"wedClose"	:	"6:00",
		"thuOpen"	:	"7:00",
		"thuClose"	:	"6:00",
		"friOpen"	:	"7:00",
		"friClose"	:	"6:00",
		"satOpen"	:	"8:00",
		"satClose"	:	"6:00",
		"sunOpen"	:	"10:00",
		"sunClose"	:	"4:00"
	}
	
};

/* 
*  This example of the following jquery use will activate the on click event for all obejcets with the class 'ispu'
*  
*  jQuery(function() {
*		jQuery('.ispu').ispu();
*	});
*/

(function($) {

	$.fn.ispu = function(options) {  
		
		var defaults = {  
			//Default variables can be set here
		};  
		if (options) $.extend(defaults, options);
		
		return this.each(function() {  
			
			jQuery(this).fancybox({
				'transitionIn'	:	'elastic',
				'transitionOut'	:	'elastic',
				'type'			:	'iframe',
				'speedIn'		:	600, 
				'speedOut'		:	200, 
				'overlayShow'	:	true,
				'overlayColor'  :   '#000000',
				'height'		:	468,
				'width'			:	879,
				'autoScale'		:	false,
				'autoDimensions':	false,
				'scrolling'	: 'no'

			});
						   
		});  
	
	}; 	
		  
})(jQuery);




