$(document).ready( function() {
		
	//Menu hover
	$('.Items').bind('mouseenter', function() {
		openMenu(this.id);
	}).bind('mouseleave', function() {
		closeMenu(this.id);
	});
	
	/*
	$( "#ProjectBox" ).hover(
		function () {
			$(this).addClass( 'Hover' );
		}, 
		function () {
			$(this).removeClass( 'Hover' );
		}
	);
	*/
});

function showOverlay(){
	var newHeight = $( document ).height();
	$( '#Overlay' ).height( newHeight );
	$( '#Overlay' ).show();
	$( '#FaseHolder' ).show();
}

function hideOverlay(){
	$( '#Overlay' ).hide();
	$( '#FaseHolder' ).hide();
}
