/***********************************************************************************************************************
DOCUMENT: /core/templates/toyotagofl/includes/javascript.js
DEVELOPED BY: Ryan Stemkoski
COMPANY: Zipline Interactive
EMAIL: ryan@gozipline.com
PHONE: 509-321-2849
DATE: 8/28/2009
DESCRIPTION: This document contains general javascript functionality used within the site.  Requires jQuery library
************************************************************************************************************************/

//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {
	
	$('#email_form').focus(function() {
		var text = $('#email_form').val();
		if(text == "Email Address") {
			$('#email_form').val("");
		}
	}).blur(function() {
		var text = $('#email_form').val();
		if(text == "") {
			$('#email_form').val("Email Address");
		}	
	});
	
});