$(document).ready(function() {
	$('#menu .with_ul').hover(function(){
			$(this).find('.marker').css({visibility:'visible'}).stop().animate({top:'-12'},400)							  
		}, function(){
			$(this).find('.marker').css({visibility:'hidden'}).stop().animate({top:'-22'},400)
		}
	)
	$('ul#menu').superfish({
      delay:       600,
      animation:   {opacity:'show', height:'show'},
      speed:       400,
      autoArrows:  false,
      dropShadows: false
   });
 });

