$(document).ready(function() {
	$(document).superSelectify({
		manualSelectors: '#uwgbfooter > ul > li:last-child, input[type="text"], input[type="password"], #sidebar dt:hover, #sidebar dd li:hover'
	});	//initialize super-selectors
	
	$('.clearfix').after('<div class="clearboth"></div>'); //apply jquery clearfix
	
	getTxtBoxesRockin('#searchText');
});

function getTxtBoxesRockin(txtBox) {
	$(txtBox).focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});	
}
