/*	
	Format the site search
*/

$(document).ready(function(){
	
	$('.forms label').hide();
	$('.forms input[type="text"]').each(function() {
		$(this).attr('value',$(this).prev().html());
	});
	$('.forms input[type="text"]').focus(function() {
		if ($(this).attr("value") == $(this).prev().html()) {
			$(this).attr("value","");
		}
	});
	$('.forms input[type="text"]').blur(function() {
		if (!$(this).attr("value")) {
			$(this).attr("value",$(this).prev().html());
		}
	});
	
});