/*------------------------------------------------------------------------------
	
	forms.js
	
------------------------------------------------------------------------------*/
var pix_input_color_alt = '#AAA';
var pix_input_color = '#000';

function forms_init(){
	$('input').each(function(){
		var val = $(this).attr('value');
		var def = $(this).attr('default');
		if ((def != undefined) && ((val == '') || (val == def))) {
			$(this).attr('value', def);
			$(this).css('color',pix_input_color_alt);
		}
	
	}).focus(function(){
		var def = $(this).attr('default');
		var val = $(this).attr('value');
		if ((def != undefined) && (val == def)) {
			$(this).attr('value','');
			$(this).css('color', pix_input_color);
		}
	
	}).blur(function(){
		var val = $(this).attr('value');
		var def = $(this).attr('default');
		if ((def != undefined) && (val == '')) {
			$(this).attr('value', def);
			$(this).css('color',pix_input_color_alt);
		}
	});
}

//Add to jquery.ready()
addReadyFunk('forms_init()');