

<!--

$(document).ready(function(){ 
   
    $('.wommdl dl').children('dt').eq(0).addClass('active');
    $('.wommdl dl').children('dd').eq(0).addClass('view');

    $('.wommdl dt').click(function() {

        $('.wommdl dt').removeClass('active');
        $('.wommdl dd').removeClass('view');

        $(this).addClass('active');
        $(this).next('dd').addClass('view');

    });
    return false;
});
//-->

