/* 
 * searchBox.js - Superfluous additions to the search box
 *
 * by Morgan Aldridge <morgant@makkintosshu.com>
 *
 * v0.1   2008-05-23 - Ported over from onclick & onblur handlers in main XHTML
 */

$(document).ready(function() {
	$(".search_box").focus(function() {
		if ( this.value == 'Search' ) { this.value = ''; }
	}).blur(function() {
		if ( this.value == '' ) { this.value = 'Search'; }
	});
});

