/* 
	taken from Trevor Davis, 
	found on Ajaxdump http://ajaxdump.com/?7oGbydYg
*/
	var $lbl = jQuery.noConflict();
	
	$lbl(document).ready(function() {
	 $lbl('.callout .pbForm input[title]').each(function() {
	  if($lbl(this).val() === '') {
	   $lbl(this).val($lbl(this).attr('title')); 
	  }
	  
	  $lbl(this).focus(function() {
	   if($lbl(this).val() === $lbl(this).attr('title')) {
		$lbl(this).val('').addClass('focused'); 
	   }
	  });
	  
	  $lbl(this).blur(function() {
	   if($lbl(this).val() === '') {
		$lbl(this).val($lbl(this).attr('title')).removeClass('focused');
	   }
	  });
	 });
	});
