function contact(){
	frm = document.getElementById('tcform_hidden');
	if (frm) {
		frm.style.visibility = "visible";
		frm.style.display = "block";
	}
	contct = document.getElementById('contactbutton');
	if (contct) {
		contct.style.visibility = "hidden";
		contct.style.display = "none";
	}
}

function dim_up() {
    if (dimmed) {
        jQuery('.special').fadeTo(500, 1);
    }
    else {
        dimmed = true;
        jQuery('.special').fadeTo(500, 1, dim_down);
    }
}

function dim_down() {
    jQuery('.special').fadeTo(500, 0.5, dim_up);
}

function on_load() {
    //alert("Loaded");
    //jQuery('.special').fadeIn(1500, function(){jQuery(this).fadeTo(400,0.5, function(){jQuery(this).fadeTo(400,1)})});
    jQuery('.special').fadeIn(1500, dim_down);
}

var dimmed = false;


