/**
 * Javascript for main layout
 * 
 * $Id: main.js 202 2008-10-04 06:57:37Z jeremy $
 */
$(document).ready(init);

var searchBoxText = "product search";

function init()
{
	//setup target attribute for external links (rel="external")
	$('[rel=external]').attr('target', '_blank');
	
	//setup flyout menu hover event for "more seeds" menu
	$('.productMenuHover').hover(function() {
		$('.productSubMenu').fadeIn('slow');
	},
	function(){
		$('.productSubMenu').hide();
	});
	
	//setup flyout menu hover event for "growing aids" menu
	$('.growingAidsMenuHover').hover(function() {
		$('.growingAidsSubMenu').fadeIn('slow');
	},
	function() {
		$('.growingAidsSubMenu').hide();
	});
	
	//setup search box focus event
	$('#search_box').val(searchBoxText);
	$('#search_box').focus(function() {
		if ($('#search_box').val() == searchBoxText)
			$('#search_box').val('');
	});
}
