// JavaScript Document
$(function(){
    $("#itemPhotoThum a").click(function(){
        $("#itemPhotoMain img").before("<img src='"+$(this).attr("href")+"' alt=''>");
        $("#itemPhotoMain img:last").fadeOut("fast",function(){
            $(this).remove()
        });
        return false;
    })
})
