function $S(id) { return document.getElementById(id); }

function setInputFieldAction(className)
	{
	var defValue = new Array();
	
	$("."+className+"[class!="+className+" null]").focus( function () {
		if ( !defValue[$(this).attr("name")] ) { defValue[$(this).attr("name")] = $(this).attr("value"); }
		if ( ($(this).attr("value") == "") || ($(this).attr("value") == defValue[$(this).attr("name")]) ) { $(this).attr("value", ""); $(this).css("color", "#000000"); }
	} );
	
	$("."+className+"[class!="+className+" null]").blur( function () {
		if ($(this).attr("value") == "")
			{
			$(this).attr("value", defValue[$(this).attr("name")] );
			$(this).css("color", "#D3CAAD");
			}
		} );
	
	$("."+className+"[class*=null]").css("color", "#D3CAAD");
	}

$(document).ready( function () {
	
	setInputFieldAction("inputField");
	$(".inputField").attr("autocomplete", "off");
	
	$(".headerLink div").mouseover( function() { $(this).css("background-color", "#EEF2FB"); } ).mouseout( function() { $(this).css("background-color", "#F7F7F7"); } );
	
} );
