/* load form submit detector 
window.onload = function () {
	document.getElementById("link_1").onclick = function () {
		return changeImage(1)
	}
}*/

/* remove text from field*/


/* remove text from field*/
function removeText(formField, theText) {
	if ( document.getElementById(formField).value == theText ) {
		document.getElementById(formField).value = "";
	} else {

	}
}

/* replace text from field*/
function replaceText(formField, theText) {
	if ( document.getElementById(formField).value == "" ) {
		document.getElementById(formField).value = theText;
	} else {

	}
}

$(document).ready(function(){
	
	//Checkout step 3
	
	$('#gift_select').hide();
	$('#order_select').hide();
	//$('#giftbox').hide();
	
	//$('#add_code').focus(function(){
		//$('#giftbox').show();
		//$('#button_continue').hide();
		//$('#add_code').hide();
	//});
	
	$('#gift_text').focus(function(){
		$('#gift_select').attr("checked","checked");
		if ( $('#gift_text').val('Gift certificate code here') ) {
			$('#gift_text').val("");
		}
	});
	
	$('#order_text').focus(function(){
		$('#order_select').attr("checked","checked");
		if ( $('#order_text').val('Promotional code here') ) {
			$('#order_text').val("");
		}
	});
	
});