
$(function(){
		   
	// Show/hide labels on inputs
   $("#global-search p input, .field input, .field textarea").bind("click", function(){
            var $this = $(this);
            $this.prev().addClass('hide');
                       $this.bind("blur", function(){
                                    if ($(this).val() == "") $this.prev().removeClass('hide');
                        });
   });
     
});




