$(document).ready(function(){
	$(".fade").innerfade({
		containerheight:354,
		timeout:4000,
		speed:"slow"
	});
	
	$("form#contact .fill input").click(function(){
		if($(this).val()==$(this).attr("id"))
			$(this).val("");
	}).blur(function(){
		if($(this).val()=="")
			$(this).val($(this).attr("id"));
	});
	
	$("form#contact .textfield textarea").click(function(){
		if($(this).text()==$(this).attr("id"))
			$(this).text("");
	}).blur(function(){
		if($(this).text()=="")
			$(this).text($(this).attr("id"));
	});
});
