/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
    $('ul.select li').hover(function() {
//        $('div.top_menu ul.select li ul.sub').hide();
        if( $(this).children('ul.sub') ) {
            $('ul.select li.current ul.sub').hide();
            $(this).children('ul.sub').show();
        }
    }, function() {
        $(this).children('ul.sub').hide();
//        $('div.top_menu ul.select li ul.sub').hide();
        $('ul.select li.current ul.sub').show();
    });
});

