jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$(document).ready(function() {

	$.preloadImages(
		"/SpryAssets/bg-active-no-arrow.jpg",
		"/SpryAssets/bg-active.jpg",
		"/SpryAssets/submenu-bg-active.jpg"
	);
	$('label').labelOver('over-apply');
	var ds = [
		'Our local first responders put their own lives at risk each day as they work to keep our community safe. They can\'t afford any communication errors. To get the job safely and effectively. These courageous men and women need the most reliable communication equipment and service available. That\'s why they turn to NYCOMCO\'s dependable service and modern equipment.',
		'Our brave law enforcement men and women require the most efficient, reliable and high-tech communications equipment available to keep our community safe. Lost communications can mean lost lives. There is no room for communications error in their business. For 50 years NYCOMCO\'s outstanding equipment and services has given our local law enforcement personnel the confidence they need to get out there and do their job&mdash;without worry of staying in touch.',
		'Successful business owners know how critical communicating is for the continued success of their business. With so many changes to be made, and with the constant advancements in communications technologies, it can be hard to keep up. That\'s why the most successful business owners and industry leaders turn to NYCOMCO for dependable and fast communications upgrades and installations.',
		'When it comes to the safety and security of our children, parents and caregivers agree that compromise is unacceptable. Communication between school personnel is critical to our children\'s safety while they are away from home. In elementary schools and large college campuses alike, NYCOMCO\'s community leadership position and 50 years of experience offers school officials the confidence they need to keep our children safe.'
	];
	$('#header-top-menu ul').hover(function(){$('#header-top-menu-detail').show();},function(){$('#header-top-menu-detail').hide();});$('#header-top-menu ul li').each(function(i){var id=$(this).attr('id').replace('top-','');var bp='/images/rev/header-top-menu';$(this).hover(function(){$(this).find('a').addClass('hover');$(this).find('img').attr('src',bp+'/over/'+id+'.gif');$('#header-top-menu-detail').html(ds[i]);},function(){$(this).find('a').removeClass('hover');$(this).find('img').attr('src',bp+'/off/'+id+'.png');});});$('#header-bot-menu ul li').each(function(i){var id=$(this).attr('id').replace('bot-','');var bp='/images/rev/header-bot-menu';$(this).hover(function(){$(this).find('img').attr('src',bp+'/over/'+id+'.gif');},function(){$(this).find('img').attr('src',bp+'/off/'+id+'.gif');});});
});


function isValidEmail(str) {
	var filter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
	if (filter.test(str))
		return true;
	else
		return false;
}

function validateQuickConnect(){
	if($("#connect_name").val() == ""){
		alert("Please enter your name.");
		return false;
	}
	if(!isValidEmail($("#connect_email").val())){
		alert("Please enter a valid email address!  (someone@some-isp.com)");
		return false;
	}
	return true;
}

function validateContactForm(){
	if(!isValidEmail($("#contact_email").val())){
		alert("Please enter a valid email address!  (someone@some-isp.com)");
		return false;
	}
	if($("#contact_name").val() == ""){
		alert("Please enter your name.");
		return false;
	}
	if($("#contact_phone").val() == ""){
		alert("Please enter your phone number.");
		return false;
	}
	return true;
}