$(document).ready(function () {
    $(window).resize(wincenter);
    wincenter();
    $.ui.dialog.defaults.bgiframe = true;
    $(function() {
        var pos=$('#wrap').position();
        pos=parseInt(pos.left-437);
        $(".message").dialog({
            position: [pos+20,260]
        });
        $('#rollover a #iberes').hover(function(){
            $(this).attr('src','themes/iberica/ibericocon.png');
        }, function(){
            $(this).attr('src','themes/iberica/ibericosin.png');
        });
        $('#rollover a #iberen').hover(function(){
            $(this).attr('src','themes/iberica/ibericoconEN.png');
        }, function(){
            $(this).attr('src','themes/iberica/ibericosinEN.png');
        });
        $('#rollo_delicado a #deles').hover(function(){
            $(this).attr('src','themes/iberica/boton delicatessen_amarillo.png');
        }, function(){
            $(this).attr('src','themes/iberica/boton delicatessen_blanco.png');
        });
        $('#rollo_delicado a #delen').hover(function(){
            $(this).attr('src','themes/iberica/boton delicatessen_amarilloEN.png');
        }, function(){
            $(this).attr('src','themes/iberica/boton delicatessen_blancoEN.png');
        });
        $('#rollover2 a #campes').hover(function(){
            $(this).attr('src','themes/iberica/campocon.png');
        }, function(){
            $(this).attr('src','themes/iberica/camposin.png');
        });
        $('#rollover2 a #campen').hover(function(){
            $(this).attr('src','themes/iberica/campoconEN.png');
        }, function(){
            $(this).attr('src','themes/iberica/camposinEN.png');
        });
         $('#rollo2 a img').hover(function(){
            $(this).attr('src','themes/iberica/campocon.png');
        }, function(){
            $(this).attr('src','themes/iberica/camposin.png');
        });
        $('#rollo_jamon a img').hover(function(){
            $(this).attr('src','themes/iberica/jamonsom.png');
        }, function(){
            $(this).attr('src','themes/iberica/jamon.png');
        });
        $('#rollo_paleta a img').hover(function(){
            $(this).attr('src','themes/iberica/paletasom.png');
        }, function(){
            $(this).attr('src','themes/iberica/paleta.png');
        });
        $('#rollo_lomo a img').hover(function(){
            $(this).attr('src','themes/iberica/lomosom.png');
        }, function(){
            $(this).attr('src','themes/iberica/lomo.png');
        });
        $('#rollo_salchichon a img').hover(function(){
            $(this).attr('src','themes/iberica/salchichonsom.png');
        }, function(){
            $(this).attr('src','themes/iberica/salchichon.png');
        });
        $('#rollo_chorizo a img').hover(function(){
            $(this).attr('src','themes/iberica/chorizosom.png');
        }, function(){
            $(this).attr('src','themes/iberica/chorizo.png');
        });
        $('#rollo_morcon a img').hover(function(){
            $(this).attr('src','themes/iberica/morconsom.png');
        }, function(){
            $(this).attr('src','themes/iberica/morcon.png');
        });
         $('#rollo_salud a #sales').hover(function(){
            $(this).attr('src','themes/iberica/botonsalud1.png');
        }, function(){
            $(this).attr('src','themes/iberica/botonsalud.png');

        });
        $('#rollo_salud a #salen').hover(function(){
            $(this).attr('src','themes/iberica/botonsalud1EN.png');
        }, function(){
            $(this).attr('src','themes/iberica/botonsaludEN.png');

        });
    });

});


function wincenter()
{
    aux=parseInt((($(document.documentElement).attr('clientHeight'))-($("#wrap").height()))/2);
    if (aux<0) aux=0;
    $("#wrap").css('top', aux+'px');
}