/*!
 * 
 * Animated menu
 *
 * Copyright 2011, LinQuality
 *
 */
slided=false;
heightset=false;
$(document).ready(function () {

        // if (heightset==false) {
        //	$('div.content-box').height( Math.max( $('div.content-box').height() , $('div.side-column').height()+79 ) );
        //	$('div.side-column').height( Math.max( $('div.content-box').height() , $('div.side-column').height()+79 ) );
        //	heightset=true;
        // } 
        

	$('#nav1').hover(
		function () {
			//show its submenu
			 $('ul', '#nav').slideDown(100, function() {
			  slided=true;
			 });
		},
		function () {
			//hide its submenu
			if (slided) {
				$('ul', '#nav').slideUp(100);
				slided=false;
			}

		}
	);

	$('#nav').hover(
		function () {
			//no action required
		},
		function () {
			//hide its submenu
			if (slided) {
				$('ul', '#nav').slideUp(100);
				slided=false;
			}

		}
	);

});
