$(document).ready(function() {
	$("#nav-one li").hover(function() { 
		$("ul", this).fadeIn("fast"); 
		},function() { }
	);
  	if (document.all) {
  		$("#nav-one li").hoverClass("sfHover");
  	}
  });

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover(
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};


/*Extend the height*/
var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
if(isIE6){
	//$(".subpagerightTiler").css("height", "334px");
	//$(".subpageleftTiler").css("height", "370px");
	//$(".subpagerightProeverijTiler").css("height", "500px");
}

if($(".subpageTiler").height() > 500){
	var divheight = $(".subpageTiler").height() - 500;
	//$(".subpageleftTiler").css("height", $(".subpageleftTiler").height() + divheight + "px");
	//$(".subpagerightTiler").css("height", $(".subpagerightTiler").height() + divheight + "px");
}

if($(".productBlock").height() > 500){
	var divheight = $(".productBlock").height() - 710;
	//$(".subpageleftTiler").css("height", $(".subpageleftTiler").height() + divheight + "px");
	//$(".subpagerightTiler").css("height", $(".subpagerightTiler").height() + divheight + "px");
}
/*Extend the height*/
