// JavaScript Document
$(document).ready(function(){

$("#drop-down").hide();


$("#hori-menu a").toggle(function(){
 $("#drop-down").slideDown("fast");
 $("#hori-menu a").addClass("over");
},function(){
 $("#drop-down").slideUp("fast");
 $("#hori-menu a").removeClass("over");
});



});



$(document).ready(function(){ 
        $(document).pngFix(); 
    }); 
  $(document).ready(function() { 
        $('ul#nav_350631').superfish({ 
            delay:       500,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: true                            
        }); 
}); 