/*var random=parseInt(Math.random()*backgrounds.length);

if (backgrounds[random]){ // if i have backgrounds defined use them otherwise use the default fot his theme.
	var wrapper=document.getElementById('wrapper');
	wrapper.style.backgroundImage='url("'+backgrounds[random]+'")';
}
*/
$(document).ready(function () {

    $(".toplevel li").hover(function () {
        $(this).find('ul').show();
    }, function () {
        $(this).find('ul').hide();
    });




});
