function showLightbox(){
    jQuery('#contentlightbox_bg').css("height",jQuery('body').height());
    jQuery('#contentlightbox_bg').css("width",jQuery('body').width());
    jQuery('#contentlightbox_bg').show();
    jQuery('#contentlightbox_wrap').css('top',jQuery(document).scrollTop()+50);
    jQuery('#contentlightbox_wrap').fadeIn(500);
}

jQuery(document).ready(function()
{
    jQuery('#velo_navigation .sub').each(function() {
        jQuery(this).hide();
    });
    jQuery('#velo_navigation .title').each(function() {
        jQuery(this).click(function (){
           jQuery(this).next('.sub').toggle();
           if(jQuery(this).hasClass('open')){
               jQuery(this).removeClass('open');
           }
           else{
               jQuery(this).addClass('open');
           }
        });
        has_class = false;
        jQuery(this).next('.sub').children().each(function() {
            if(jQuery(this).hasClass('act')){
                has_class = true;
            }
        });
        if(has_class){
            jQuery(this).addClass('open');
            jQuery(this).next('.sub').toggle();
        }
    });
});
