// Initialize Primary Nav
var primaryNav;

Spry.Utils.addLoadListener(function()
{
	primaryNav = new Spry.Widget.MenuBar("primaryNav");
});


$(function() {
	// Image preloader
	function preloadImg(image) {
		var img = new Image();
		img.src = image;
	}
	//Preload Primary nav hover images
	preloadImg('/images/pnav_keys_to_growth_over.gif');
	preloadImg('/images/pnav_growth_expertise_over.gif');
	preloadImg('/images/pnav_growth_results_over.gif');
	preloadImg('/images/pnav_growth_insights_over.gif');
	preloadImg('/images/pnav_about_us_over.gif');
	// Remove top margin from first <h1> in right column
	$("#contentAreaContainer #rightColumn h1:first-child").css("margin-top", "0");
	$("#ea").val("Enter your email address here")
		.focus(
			function()
			{
				$(this).val("");
			})
		.blur(
			function()
			{
				$(this).val("Enter your email address here");
			});
	$("#quoteContainer").click(function ()
	{ 
		window.location = "/growth-results/testimonials.cfm";
    });

});
