$(document).ready(function(){

	// Main Navigation, remove lines from the ends
	$('#mainNav_hst a:first').css({borderLeft: 'none'});
	$('#mainNav_hst a:last').css({borderRight: 'none'});
	
	$('#waterTop').pan({fps: 30, speed: 6, dir: 'left'});
	$('#waterMid').pan({fps: 30, speed: 4, dir: 'right'}); 
	$('#waterBtm').pan({fps: 30, speed: 2, dir: 'left'});
	
	// Hash Tag Google Tracking
	$(window).load(function() {
		var theHash = location.hash;
		if (theHash) 
		{		
				_gaq.push(['_trackEvent', 'Tracked Marketing Campaingns', 'Campaign: ' + theHash, 'Page landed on: '+window.location]);
		} 
	});
	
	// Seach box, initalize text on focus and blur
	$("input#s").focus(function () {
         var inputValue = $(this).val();
		 if(inputValue == "Search")
		 {
			 $(this).val("");
		 }
    });
	
	$("input#s").blur(function () {
         var inputValue = $(this).val();
		 if(inputValue == "")
		 {
			 $(this).val("Search");
		 }
    });
	
	// Home page embed flash banner
	$('#flash_hst').flash({
		swf: '/homeFlash.swf',
		height: 284,
		width: 293,
		params: {wmode: 'transparent'}
	});

});
