/* Author: 
	Marco Lisci - BadShark Communications
*/

$(document).ready(function(){
	
	$('input:text').focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	// Office VA and NC redirect form
	var va = [ "201", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "220", "242", "243", "244", "245", "246" ];
	var nc = [ "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289" ];
	
	$('#searchForm').submit(function() {
		var value = $(this).find('input:text').val();
		value = value.slice(0, - 2);
		if ($.inArray(value, va)!='-1') {
			window.location = '/locations';
		} else if ($.inArray(value, nc)!='-1') {
			window.location = '/locations';
		} else {
			 $(this).find('label').addClass('error').text('We only serve VA & NC areas.');
		};
	  return false;
	});
	// End Office Form
	
	$('#quoteForm').submit(function() {
			window.location = '/get-a-free-quote/';
			return false;
	});
	
});

$('nav ul li:nth-child(3n)').addClass('vCenter');
