jQuery( function($) {

/* -------------------------------------------------------------- */
/* !	Sidebar Search box functionality */
/* -------------------------------------------------------------- */

	//set up search box on load
	$('#s').css('color','#c9c9c9');
	$('#s').val('Search');
	
	//change color/content on focus
	$('#s').focusin(function() {
		$(this).css('color','black');
		if( $(this).val() == 'Search' )
		{
			$(this).val('');
		}
	});
	
	//change back on losing focus
	$('#s').focusout(function() {
		$(this).css('color','#c9c9c9');
		if( $(this).val() == '' )
		{
			$(this).val('Search');
		}
	});

});
