// -- placeholder attributes

$(document.forms).find('input').each(function() {
	if(!!$(this).attr("placeholder")) {
		var text = $(this).attr("placeholder");
		$(this).val(text);
		$(this).focus(function(){
			if($(this).val() == text) $(this).val('');
		});
		$(this).blur(function(){
			if($(this).val() == '') $(this).val(text);
		});
	};
});

/* -- first para highlighting

var paras = document.getElementById("furtherContent").getElementsByTagName("p");
paras[0] && paras[0].setAttribute("class","firstPara"); */
