function SwitchThumbImage(id,newsrc)
{
    
    $("#"+id).attr("src",newsrc);
    $("#"+id).css("cursor","pointer");
}

function RestoreThumbImage(id,oldsrc)
{
    $("#"+id).attr("src",oldsrc);
    $("#"+id).css("cursor","default");
}

function LoadFullsizeImage(url)
{
    $("#showroom > img").attr("src","images/ajax-loader.gif");
    $("#showroom > img").attr("width","220");
    $("#showroom > img").attr("height","19");
    $("#showroom > span").css("display","none");
    
    
    $.getJSON(url,function(json) {
        var imghtml = '<img src="' + json.source + '" width="' + json.width + '" height="' + json.height + '" alt="" /><br /><span class="subtitle">' + json.title + '</span>';
        $("#showroom").html(imghtml);
        $("#showroom").css("display","none");
        $("#showroom").fadeIn(200);
    });
}       
