$(document).ready(function(){
	
	/* Sidebar */
	$('.box:first').addClass('first');
	$('.box:last').addClass('last');
	
	/* Search Box */
	$("#searchText").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
});

