$(window).load(function() {
	
	//$(".home div:nth-child(2)").addClass("first");	
	
	// Remove default form text on focus
	$(".emptytext").focus( function(){
		if ( $(this).val() == $(this)[0].defaultValue ) {
			$(this).val("");
		}
	});
	// Replace default form text on blur if input is empty
	$(".emptytext").blur( function(){
		if ( $(this).val() == "" ) {
			$(this).val( $(this)[0].defaultValue );
		}
	});	
	

	
});
