$("#cont2").css({'opacity': 0.0});
$(function(){
	var inps = $("input, textarea");
	$.each(inps, function(idx, inp){
	if ($.trim($(inp).val()) == ""){
		$(inp).val($(inp).attr("def"));
	}
	});
	inps.focus(function(){
		if ($(this).val() == $(this).attr("def")){
			$(this).val("");
		}
	});
	inps.blur(function(){
		if ($.trim($(this).val()) == ""){
			$(this).val($(this).attr("def"));
		}
	});
	$("a[rel='thumbviews']").colorbox();
	$("#cont2").css({'opacity': 0.0}).animate({'opacity': 1.0}, 'fast');
});