$(function(){
	$('.field')
		.focus(function(){
			if( $(this).val() == $(this).attr('title') ){
				$(this).val('');
			}
		})
		.blur(function(){
			if( $(this).val() == '' ) {
				$(this).val( $(this).attr('title') );
			}
		});
	$('#navigation ul li').hover(
function (e) { $
(this).children('.dd-menu').slideDown('fast'); },
function (e) { $(this).children('.dd-menu').fadeOut('fast'); }
);
 });

//  this function controls the contact form and it's behaviour when submitted
function submitContactForm() {
	$.ajax({
	  type: "POST",
	  data: $("#contact_form").serialize(),
	  url: '/contact_us/submit/',
	  success: function(returnData) {
		  switch(returnData) {
			case "1":
			 	$('#contact_response').html('<p style="color:#FF0000;font-weight:bold;">You must enter your name, either your email or phone number, and a comment.</p>'); 
				break;
			case "2":
				$('#contact_response').html('<p style="color:#FF0000;font-weight:bold;"><p style="color:#FF0000;font-weight:bold;">Your inquiry was not properly sent.</p>');
				break;
			case "3":
				$('#contact_response').html('<p style="color:#009933;font-weight:bold;">Thank you for your inquiry.  We will get back to you soon.<img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1016606813/?label=9wOvCNvU4gEQ3eDg5AM&amp;guid=ON&amp;script=0"/></p>');
				$('#name').attr('value', 'Name');
				$('#email_address').attr('value', 'Email');
				$('#phone_number').attr('value', 'Phone Number');
				$('#comment').attr('value', 'Inquiry');
				break;
			default:
				$('#contact_response').html('');
		  }
	  }
	});
}

//  this function controls the receive updates form and it's behaviour when submitted
function submitMailingList() {
	$.ajax({
	  type: "POST",
	  data: $("#contact_form").serialize(),
	  url: '/contact_us/mailing_list_submit/',
	  success: function(returnData) {
		  switch(returnData) {
			case "1":
			 	$('#contact_response').html('<p style="color:#FF0000;font-weight:bold;">You must enter your name and your email.</p>'); 
				break;
			case "2":
			 	$('#contact_response').html('<p style="color:#FF0000;font-weight:bold;">You are already subscribed to our mailing list.</p>'); 
				break;	
			case "3":
				$('#contact_response').html('<p style="color:#FF0000;font-weight:bold;"><p style="color:#FF0000;font-weight:bold;">There was an error.  Please try again.</p>');
				break;
			case "4":
				$('#contact_response').html('<p style="color:#009933;font-weight:bold;">Thank you for joining our mailing list.  You will be sent new updates by email.<img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1016606813/?label=3nArCMPX4gEQ3eDg5AM&amp;guid=ON&amp;script=0"/></p>');
				$('#name').attr('value', 'Name');
				$('#email_address').attr('value', 'Email');
				$('#phone_number').attr('value', 'Phone Number');
				$('#comment').attr('value', 'Optional Comments');
				break;
			default:
				$('#contact_response').html('');
		  }
	  }
	});
}
