$(document).ready(function()
{
	// menu js for crappy browsers
	$('#menu li.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none');
	});
				
	Cufon.replace('#feature-boxes .box h2, #footer #links li a, #menu a.parent, #copy h2');
				
	// clear the search field
	$('input[name="keywords"]').blur(function() { if(this.value == '') this.value = 'Search...'; });
	$('input[name="keywords"]').focus(function() { if(this.value == 'Search...') this.value = ''; });
	
	// clear the e-list field
	$('input[name="email"]').blur(function() { if(this.value == '') this.value = 'Email me Jamberoo Offers!'; });
	$('input[name="email"]').focus(function() { if(this.value == 'Email me Jamberoo Offers!') this.value = ''; });
	
	$('#slogans').childFader({ interval: 4000, speed: 500 });
	
});
