$(document).ready(function() {

	// input initial value
//	$("input[type=text]").initval();

	Cufon.replace("h1,h3",{fontFamily: 'Arid'});
	DD_belatedPNG.fix("#logo");

	$("#navigator li").hover(function(){       // mouseover
		$("ul",this).fadeIn("fast");
		$(this).children("a").addClass("temp-on");
	},function(){                           // mouse out
		$("ul",this).fadeOut("fast");
		$(this).children("a").removeClass("temp-on");
	});

	$("form li:odd").addClass("odd");


	if ( typeof $.fn.innerfade != 'undefined' )
		$(".slideshow").innerfade({speed: 1000, timeout: 3500});

	
	if(document.getElementById("content").offsetHeight<470)
	  document.getElementById("content").style.height = "470px";
	
});