/*
(c) 2007 Capolinea s.r.l < www.capolinea.it > some rights reserved.
Author: Simone Volpini < www.simonevolpini.info >
This code is licensed under Creative Commons Attribution-ShareAlike License < http://creativecommons.org/licenses/by-sa/2.0/ >
*/
(function(){
    jQuery.fn.change_photo = function(){
        $(this).click(function(){
            pathimg = $(this).attr("href");
            $("#largePhoto").attr("src", "");
            $("#largePhoto").attr("src", pathimg);
            return false;
        });
    };
})(jQuery);