
// Superfish
    $(document).ready(function() { 
        $('ul#nav').superfish({ 
            delay:       100,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  true,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
    });
	
// Split navigation column in two
 $(document).ready(function() {
     $('.splitcol').each(function() {
          var colsize = Math.round($(this).find("li").size() / 2);
          $(this).find("li").each(function(i) {
               if (i>=colsize) {
                    $(this).addClass('right_col');
               }
          });
			// manipulate the list
			  $(this).find('.right_col').insertAfter(this).wrapAll("<ul class='splitcol_right' style='margin-left: 200px; border-left-width: 0px; display: none;'></ul>").removeClass("right_col");
			   var colheight = $('.splitcol').height();
			   $('.splitcol_right').css('height', colheight);
     });
	
});
