/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var mOstra = false;

// menu
jQuery('.parent').live('mouseover', function() {
    if(mOstra){jQuery('#sub'+mOstra).css('display','none');}
    jQuery('#sub'+jQuery(this).attr('id')).css('display','block');
    mOstra = jQuery(this).attr('id');
});
jQuery('.parent').live('mouseout', function() {
    if(mOstra){
        jQuery('#sub'+mOstra).css('display','none');
        mOstra = false;
    }
});

//// certificati
//jQuery('#login').live('click', function() {
//    jQuery.post(
//            '/certificati/index',
//            {data:'ajax'},
//            function(xRes){
//                $('#rows_'+d1v).html(xRes);
//            }
//        );
//    alert("login");
//});

