// JavaScript Document

/*
var resizeCenterContent = function () {
	$(".center_content").height($(document).height()-48)
}

$(document).ready(
	function() {
		
		$(".news").hover(function(){
		$(this).children(".news_top").addClass("visible");
		},function(){
		$(this).children(".news_top").removeClass("visible");
		});
		
		$(document).resize(resizeCenterContent);
		resizeCenterContent();
		
		$(".nav_head").hover(function(){
		$(this).children(".nav_body").show();
		},function(){
		$(this).children(".nav_body").hide();
		});
		
		$("#nav a").click( function() { 
			$(".center").hide("slow");
			$(".center_big").show("slow");
		} );
		
		$(".arrows").click( function() { 
			$(".center_big").hide("slow");
			$(".center").show("slow");
		} );
		
		
		
				
	});
*/
