(function( $, undefined ) {
	$.extend({
		CS_RegionalizedValues : function(options) {
			this.regional = [];
			this.regional[''] = {
				monthNames: ['January','February','March','April','May','June',
				 			'July','August','September','October','November','December'],
		 		dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
		 		dateFormat: 'mm/dd/yy',
		 		firstDay: 0,
		 		isRTL: false,
		 		yearSuffix: '',
		 		and: 'and',
		 		currency: '$',
		 		emptyField: ' can not be left empty.',
		 		emailInvalid: ' is not a valid email address.',
		 	    registration: {
		 	    	'firstname_empty' : 'You have left your first name empty.',
		 	    	'lastname_empty' : 'You have left your last name empty.',
		 	    	'code_empty' : 'You have left your lot code empty.',
		 	    	'code_invalid' : ' is not a valid code.',
			 	    'email_empty' : 'You have left your email empty.',
				 	'state_empty' : 'State/Province is a required field.',
				 	'lotcode_empty' : 'You have left your lot code empty.',
				 	'lotcode_invalid' : ' is not a valid code.',
				 	'zipcode_empty' : 'You have left your zip empty.',
				 	'zipcode_invalid' : ' is not a valid zip code.',
				 	'field_required' : ' is a required field.',
				 	'helper_email' : 'Enter your email',
				 	'lotcode_info_1' : 'Enter the 8-digit code (letters and numbers) printed next to the applicator tip. (i.e. H0612300)',
				 	'lotcode_info_2' : 'Enter the 6 to 8-digit code (letters and numbers) found on the bottom of the handle. (i.e. 0909702)',
				 	'lotcode_info_3' : ' <strong>must be valid and cannot be the demo code</strong>',
				 	'lotcode_info_4' : 'Enter the 7 to 8-digit code (letters and numbers) found on the bottom of the handle. (i.e. 0909702)'
		 	    },
		 	    search: {
		 	    	'no_results_found' : '<h2>We\'re sorry, no results were found for your query.  Please try again using different search terms.  It may helpful to leave the \'s\' off the end of words.</h2>'
		 	    },
		 	    shop: {
		 	    	'valid_quantity' : 'Please enter a valid quantity between 1-99',
		 	    	'chars_left' : ' characters left',
		 	    	'no_such_combo' : 'There is no combination SKU for ',
		 	    	'combo_unavailable' : 'Combination not available',
		 	    	'sku_not_found' : 'SKU not found',
		 	    	'not_all_engraveable' : 'Only one of these two products is engravable',
		 	    	'going_to_default' : 'gone to default in selectProduct',
		 	    	'add_to_bag' : 'Add to Bag',
		 	    	'select_color' : 'Select Color:',
		 	    	'quantity' : 'Qty:',
		 	    	'nb_for' : '1 for ',
		 	    	'not_available' : 'not available',
		 	    	availability: {
		 	    		'sold_out' : 'Sold Out',
		 	    		'out_of_stock' : 'Out of Stock',
		 	    		'back_ordered' : 'On Backorder',
		 	    		'both_products' : 'both products'
		 	    	}
		 	    },
		 	    schools: {
		 	    	'accesscode_empty' : 'Access code is required.'
		 	    }
			};
			if( options ) { 
		        $.extend(this.regional[''], options);
		    }
			return (this.regional['']);
		}
	});
})(jQuery);
