jQuery(document).ready(function() {
	jQuery('#menu > li > a  span').css({opacity:'0'});			   
	jQuery('#menu > li').hover(
		function(){
			jQuery(this).find('span').stop().animate({opacity:'1'},600)
		}, 
		function(){
			jQuery(this).find('span').stop().animate({opacity:'0'},600)
		});
	jQuery('#menu > li > a').click(
		function(){
			var aHref = this.href.split("/");
			var aLocation = window.location.toString().split("/");
			if(jQuery('#container_16').is(':hidden') && (aHref[aHref.length-1] == aLocation[aLocation.length-1] || aHref[aHref.length-1] == 'index.html' && aLocation[aLocation.length-1].indexOf("html") == -1)){
				jQuery('#container_16_wrapper').css('height','auto'); jQuery('#container_16').show();
				return false;
			}
		});		
	jQuery('ul#menu').superfish({
      delay:       400,
      animation:   {opacity:'show', height:'show'},
      speed:       400,
      autoArrows:  false,
      dropShadows: false
   });
 });

