function bookmark(anchor){
    if(window.external)
    {
        window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
        return false;
    }
    return true;
}

$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto(
    {
        allow_resize: true,
        default_width: 10990,
        default_height: 19944
    });
                
                
    $('.offer').hover(function() {
        $('#submenu-1').show();
    }, function() {
//        $('#submenu-1').hover(function() {
//            $(this).css('display', 'block');
//        }, 
//        function() {
            $('#submenu-1').hide();
//        });      
    });
});
