jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery('form#commentform input:text').focus(function(){
		var startVal = jQuery(this).attr('value');
		
		
		if (jQuery(this).attr('value') !== '') {
			jQuery(this).attr('value','');
			
			jQuery(this).blur(function(){
				if (jQuery(this).attr('value') === '') {
					jQuery(this).attr('value',startVal);
				}
			});
			
		}
	});

	    
});




