$(document).ready(function(){

	$('.flashmessage')
		.addClass('floatright')
		.wait(1000)
		.fadeOut('slow');
	
	// Set the default text of the header search box, and remove the
	// default text when the user wants to use the box.
	// $('input#PageQ').inputlabel('Search Alekese.com');
	var $pages_search = $('input#PageQ');
	$pages_search
		.focus(function(){
			$(this).removeClass('input-blur-search-alekese-com');
		})
		.blur(function(){
			if(jQuery.trim($(this).val()) == ''){
				$(this).addClass('input-blur-search-alekese-com');
			}
		});
});