/*
	All da jQuery magic starts here!
*/
$(function()
{
	/*
		This sort out the text in the site search box
	*/
	var sdefault = 'Keyword(s)';	
	$('#skeywords').focus(function(){
		if (this.value == sdefault) this.value = '';
	}).blur(function() {
		if (this.value == '') $(this).css({opacity:0}).fadeTo(500, 1).val(sdefault);
	});
});