jQuery(go);
function go() {
    $('.menus li').mouseover(
        function () { $(this).find('ul').show(); }
    );
    $('.menus li').mouseout(
        function () { $(this).find('ul').hide(); }
    );


    $("a[rel^='prettyPhoto']").prettyPhoto();

}
