$(document).ready(function(){
//$.ifixpng('js/pixel.gif');
//$('img[@src$=.png]').ifixpng();
$('#jsScrollMenu').find('li:has(ul)').each(function(){
      $(this).find('a:first-child').hover(function(){$(this).next().animate({height:'show'},300);},function(){});
      $(this).hover(function(){},function(){$(this).find('a:first-child').next().animate({height:'hide'},300);});
      $(this).find('a:first-child').next().animate({height:'hide'},0);
   });
});
