/*
'--------------------------------------------------------------------------------------------------
' Title			: Site Homepage JavaScript
' Description	: JavaScript functions and declarations for the site homepage
'--------------------------------------------------------------------------------------------------
' History
' 04/01/2010	: DPE - Created Page
'--------------------------------------------------------------------------------------------------
*/

// Initializes the Welcome rotator
function initWelcomeBox() {
	$("#Welcome .rotators").cycle({
		fx:'fade',
		timeout:8000,
		cleartype:0,
		pause:1 //Pauses the rotation on hover
	});
}

$(document).ready(function(){
	initWelcomeBox();
	initZipCodeSearch2();
});


// Controls and validates the ZipCode Search form
function initZipCodeSearch2(){
	
	if($("#ZipCodeSearchQuery2").attr("value") == '' || $("#ZipCodeSearchQuery2").attr("value") == 'Zip Code...'){
		$("#ZipCodeSearchQuery2").attr({value:"Zip Code..."});
		$("#ZipCodeSearchQuery2").css({color:"#616161"});
	}
	
	// Validate the form before submission...
	$("#ZipCodeSearchBtn2").click(
		function(){ // Validate search field...
			
			var searchValue = jQuery.trim($("#ZipCodeSearchQuery2").attr("value"));
			
			if(searchValue == '' || searchValue == 'Zip Code...' || searchValue.length != 5 || (searchValue != parseInt(searchValue))) {
				alert('Please enter a valid 5-digit zip code.');
				$("#ZipCodeSearchQuery2").focus();
				return false;
			} else {
				//return false;
				$("#ZipCodeSearchForm2").submit();
			}
			
		}
	);
	
	$("#ZipCodeSearchQuery2").focus(
		function(){ // highlight and clear the search field
			if($(this).attr("value") == 'Zip Code...'){
				$(this).attr({value:""});
			}
			$(this).css({'color':'#000','font-style':'normal'});
		}
	);
	$("#ZipCodeSearchQuery2").blur(
		function(){ // highlight and clear the search field
			if($(this).attr("value") == '' || $(this).attr("value") == 'Zip Code...'){
				$(this).attr({value:"Zip Code..."});
				$(this).css({'color':'#616161','font-style':'italic'});
			}
		}
	);
	
}
