// JavaScript Document

var resizeCenterContent = function () {
	$(".outer_in").height($(document).height()-198)
	$(".content_in").height($(document).height()-265)
	$(".content_inn").height($(document).height()-290)
}

$(document).ready(
	function() {
		
		$(document).resize(resizeCenterContent);
		resizeCenterContent();
		
		$(".navigation td").hover(function(){
			$(this).children("ul").show();
			$(this).addClass("hov");
			},function(){
			$(this).children("ul").hide();
			$(this).removeClass("hov");
		});
		
		$(function()
			{
				$('#pane2').jScrollPane({showArrows:true});
			});

				
	});
