
		jQuery(function($) {
			$("img").pngfix();
		});

		
		jQuery(document).ready(function(){
			jQuery("#content tr:even").addClass("row-even");
			
			jQuery('input[type=text][title],input[type=password][title],textarea[title]').each(function(i){
				jQuery(this).addClass('input-prompt-' + i);
				var promptSpan = jQuery('<span class="input-prompt"/>');
				jQuery(promptSpan).attr('id', 'input-prompt-' + i);
				jQuery(promptSpan).append($(this).attr('title'));
				jQuery(promptSpan).click(function(){
				  jQuery(this).hide();
				  jQuery('.' + $(this).attr('id')).focus();
				});
				if(jQuery(this).val() != ''){
				  jQuery(promptSpan).hide();
				}
				jQuery(this).before(promptSpan);
				jQuery(this).focus(function(){
				  jQuery('#input-prompt-' + i).hide();
				});
				jQuery(this).blur(function(){
				  if(jQuery(this).val() == ''){
					jQuery('#input-prompt-' + i).show();
				  }
				});
			  });
			  
			jQuery("input,textarea").focus(function() {
					jQuery(this).parent().addClass("curFocus")
			});
			jQuery("input,textarea").blur(function() {
					jQuery(this).parent().removeClass("curFocus")
			});

		});	
		
		
	
		
