$(document).ready(function() {
	if ($('#nav-global').length > 0) {
		var tmp = $('#toolbar-underlay').clone();
        $('#toolbar-underlay').remove();
        $('#toolbar').before(tmp);
        $('#nav-global .clickable').mouseenter(function() {
        	$(this).children('.picNavi').show();
        	$(this).find('ul').css('display', 'block');
        });
    	$('#nav-global .clickable').mouseleave(function() {
    		$(this).children('.picNavi').hide();
        	$(this).find('ul').css('display', 'none');
        });
        $.each($('#nav-global > li'), function() {
        	if ($(this).children().length > 1 && !$(this).hasClass('clickable')) {
        		$(this).children('a').addClass('hasSubmenu');
                /*$(this).click(function() {
                	return false;
                });*/
            } else
            	if ($(this).hasClass('clickable'))
            		$(this).children('a').addClass('hasSubmenu');
        });
    }
});
