var PAASEL={};
PAASEL.imagesURL="http://www.ayemsa.com/ayemsa/images/paasel/";
PAASEL.preloadImage=function(imgName){
    var img = new Image(150,150);
    img.src = PAASEL.imagesURL+imgName;
    return img;
};
PAASEL.imagesReference={
    ajo:{
        focused: PAASEL.preloadImage("producto_ajo.jpg"),
        blured: PAASEL.preloadImage("principal_ajo.jpg")
    },
    aguacate:{
        focused: PAASEL.preloadImage("producto_aguacate.jpg"),
        blured: PAASEL.preloadImage("principal_aguacate.jpg")
    },
    mueloliva:{
        focused: PAASEL.preloadImage("producto_extravirgen.jpg"),
        blured: PAASEL.preloadImage("principal_extravirgen.jpg")
    },
    olivol:{
        focused: PAASEL.preloadImage("producto_olivol.jpg"),
        blured: PAASEL.preloadImage("principal_olivol.jpg")
    },
    vegetal:{
        focused: PAASEL.preloadImage("producto_vegetal.jpg"),
        blured: PAASEL.preloadImage("principal_vegetal.jpg")
    },
    pepitauva:{
        focused: PAASEL.preloadImage("producto_pepitauva.jpg"),
        blured: PAASEL.preloadImage("principal_pepitauva.jpg")
    }
};
PAASEL.overEffect = function(element){
    element.src=PAASEL.imagesReference[element.id].focused.src;
};
PAASEL.outEffect = function(element){
    element.src=PAASEL.imagesReference[element.id].blured.src;
};