/*
    Document   : prod_list
    Created on : 2-dic-2009, 9.37.50
    Author     : Eduard Gabriel Dumitrescu <eddie.dumitrescu@gmail.com>
*/

function loadProductImage(box, src) {
    var img = new Image();
    //
    $(img).attr('src', src+"#"+Math.random())
    .load( function () {
        $(this).addClass("prodimg");
        box.text("").removeClass("loading").append($(this));
    })
    .error(function () {
        });
}

$().ready(function(){
    $(".prod-box").each(function(){
        loadProductImage($(this), $(this).text());
        
    })
});


