/* Merged Plone Javascript file
 * This file is dynamically assembled from separate parts.
 * Some of these parts have 3rd party licenses or copyright information attached
 * Such information is valid for that section,
 * not for the entire composite file
 * originating files are separated by - filename.js -
 */

/* - ++resource++whp.navigation.js/jquerry_noflicker.js - */
// http://wh-p.de/portal_javascripts/++resource++whp.navigation.js/jquerry_noflicker.js?original=1
document.write('<style type="text/css">#subNav li ul{display:none}</style>');

/* - ++resource++whp.navigation.js/scripts.js - */
/*whp.navigation.js*/
jq(document).ready(function() {
    jq("#subNav li ul").hide();
    jq("#subNav li").hover(
        function () {
            jq(this).children("ul").show();
        },function(){
            jq(this).children("ul").hide();
    });//hover
});

