// JavaScript Document
(function($){
	$.fn.clearinput = function() {  
		this.each(function() {
			$(this).attr('title', $(this).attr('value'));
			$(this).focus(function() {
					if($(this).attr('value') == $(this).attr('title')) {
						$(this).attr('value', '');
					}
				}).blur(function() {
					if($(this).attr('value') == "") {
						$(this).attr('value', $(this).attr('title'));
					}
				});
			$('textarea', this).focus(function() {
					if($(this).html() == $(this).attr('title')) {
						$(this).html('');
					}
				}).blur(function() {
					if($(this).html() == "") {
						$(this).html($(this).attr('title'));
					}
				});
		});
	};  
})(jQuery); 

$(document).ready(function() {
						  
	// shopping bag
	$('#zip').css('display', 'none');
	$('#promo-code').css('display', 'none');
	
	$('#country').change(function(){
		if($('#country').val()=='United States') {
				// show the relating hidden field.
				$('#zip').css('display', 'inline');
			} else {
				// hide the relating hidden field.
				$('#zip').css('display', 'none');
			}
	});
	
	$('#promo').click(function(){
		// show the relating hidden field.
		$('#promo-code').css('display', 'inline');
	});
	
	$('#zip').clearinput();
	$('#promo-code').clearinput();
});
