$(document).ready(function() {
	
	/* FORM CLEAR ON FOCUS */
	$("input").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
		}
	}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
		}
	});
	
	$("textarea").focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
		}
	}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
		}
	});
	
	// PRODUCTS DROPDOWN
	$("#prodlink").hover( function() { 
		$("#nav li.products ul").css('display', 'block');
		$("#nav li.products").hover( function() { 
			$("#prodlink").css('background-position', 'right');
			$("#nav li.products ul").css('display', 'block');
		}, function() { 
			$("#nav li.products ul").css('display', 'none');
		});
	});
	
	// TOOL TIP
	$("#reg label").hover( function() {
		$("#reg em").css('display', 'block');
		}, function() { 
			$("#reg em").css('display', 'none');
	});
	
	
});