// JavaScript Document

$(document).ready(function()
{
	//Setup search keywords
	$("#search_keywords").focus(function()
	{
		if($("#search_keywords").val() == "Search Keywords")
		{
			$("#search_keywords").val("");	
		}
	});
	
	$("#search_keywords").blur(function()
	{
		if($("#search_keywords").val() == "")
		{
			$("#search_keywords").val("Search Keywords");	
		}
	});
	
	
	//Contact form
	$("#contact_submit").click(function()
	{
		validateContactForm();
	});
});

function validateContactForm()
{
	var s_name = $("fname").val();
	var s_phone = $("phone").val();
	var s_email = $("email").val();
	var s_comments = $("comments").val();
	
	alert("Your message has been sent! We will get back with you shortly.");
	
	$.ajax({
			 url: 	"http://overstock.mysterymania.net/php/sendContact.php",
			data: 	{namer: s_name, email: s_email, phone: s_phone, comments: s_comments},
			type:	"POST",
			async:	false,
			success:	function(data)
			{ 
					//alert(data);
			}
			
	});	
	
}
