// JavaScript Document
hdrLogo1 = new Image(527,244);
hdrLogo2 = new Image(527,244);
hdrLogo1.src="images/hdr-logo-1.jpg"; 
hdrLogo2.src="images/hdr-logo-2.jpg"; 

var aDefaults = new Array();
aDefaults[0] = "Name:";
aDefaults[1] = "Email Address:";
aDefaults[2] = "Best to reach you:";
aDefaults[3] = "Subject:";
aDefaults[4] = "Your Message:";

function clickclear(thisfield, index)
{
	if (thisfield.value == aDefaults[index]) { thisfield.value = ""; }
}

function clickrecall(thisfield, index)
{
	if (thisfield.value == "") { thisfield.value = aDefaults[index]; }
}

/*
$(function(){
	$page = jQuery.url.attr("file");
	if(!$page) {
		$page = 'index.php';
	}
	$('#nav_main ul li a').each(function(){
		var $href = $(this).attr('href');
		if ( ($href == $page) || ($href == '') ) {
			$(this).addClass('current');
		} else {
			$(this).removeClass('current');
		}
	});
});
*/

