$(document).ready(function(){
	$("#offer_name").focus(function(){
		if($(this).val()=='Name'){
			$(this).val('');
		}
	});	
	$("#offer_email").focus(function(){
		if($(this).val()=='Email Address'){
			$(this).val('');
		}
	});
	$("#header_zipcode").focus(function(){
		if($(this).val()=='ZIPCODE'){
			$(this).val('');
		}
	});

})

function special_offer_submit(){
	var url="/main/offer_submit/";
	var submit_data = {name:$("#offer_name").val(), email:$("#offer_email").val() , areacode:$("#offer_area").val() , phoneprefix:$("#offer_phone_pre").val() , phonesuffix:$("#offer_phone_suff").val() };
	$.post(url, submit_data, function(data){
		reset_offer_form();
		$.fancybox({
			'width':600,
			'height':300,
			'content':''+data
		})
	})
}

function reset_offer_form(){
	$("#offer_name").val('Name');
	$("#offer_email").val('Email Address');
	$("#offer_area").val('');
	$("#offer_phone_pre").val('');
	$("#offer_phone_suff").val('');
}

function record_click(itemID,itemType){
	url="/main/record_click/"+itemID+"/"+itemType;
	$.post(url);
}

