$(document).ready(

	function() {
		$('ul#nav').superfish({ 
		    hoverClass:  'over',
			delay:       100,                            // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false                           // disable generation of arrow mark-up 

		});

		$('.left-column').height($(window).height()-($('.footer').outerHeight()+148));

		$('.scroll').height($(window).height()-($('.footer').outerHeight()+199));

		$('#extraBlueBg').height($('.left-column').outerHeight());


		$(window).resize(function() {

  			$('.left-column').height($(window).height()-($('.footer').outerHeight()+148));

			$('.scroll').height($(window).height()-($('.footer').outerHeight()+199));

			$('#extraBlueBg').height($('.left-column').outerHeight());

		});

	}

);
