jQuery(function ($) {
    $('.casaverdes').mousemove(function(e) {
        var img = '';
        var pos = $('#wrapper').position().left;
        var x = e.pageX-pos;
        
        // Debug Code
        //$('.copyright').html('X: '+e.pageX+' / '+pos+' / '+x);
        
        // Flora
        if (x < 999 && x > 878) img = 'flora';
        // Herb
        else if (x < 877 && x > 761) img = 'herb';
        // Rose
        else if (x < 760 && x > 661) img = 'rose';
        // Leif
        else if (x < 660 && x > 580) img = 'leif';
        // Dog
        else if (x < 579 && x > 519) img = 'dog';
        
        if (img != '') $('.casaverdes a').css({background:'transparent url(/images/casaverdes_rollover_'+img+'.png) no-repeat scroll 100% 100%'});
    });
    
    $('.casaverdes a').mouseout(function() {
        $(this).css({background:'transparent no-repeat scroll bottom right'});
    });
});

/* Zen Cart uses these functions */
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=600,height=400,screenX=150,screenY=150,top=150,left=150')
}
function popupWindowPrice(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=400,screenX=150,screenY=150,top=150,left=150')
}
