$(document).ready(function(){
	$(".chertoff-group-left .bkg, .chertoff-group-right .bkg").css("height",$(".chertoff-group-left").innerHeight()+"px");
	var subnavs = $(".nav li ul");
	for (i=0; i<subnavs.length; i++){
		$(".nav li ul li.bkg:eq("+i+")").css("height",$(".nav li ul:eq("+i+")").innerHeight()+"px");
	}
	
	$(".nav li").hover(function(){
		$(this).addClass("hover");
	},function(){
		$(this).removeClass("hover");
	});
	$(".search_field").focus(function(){
		if(this.value=="Keyword"){
			this.value="";
		}
	}).blur(function() {
		if(this.value==""){
			this.value="Keyword";
		}
	});
});