﻿function Gallery(id) {

    $("." + id).click(function () {
        var image = $(this).attr("href")
        var className = $(this).attr("class")
        var title = $(this).attr("title");
        
        $('#' + id).hide();
        $('#' + id).html('<a class="zoom" href="' + image + '"><img src="' + image + '" alt="' + title + '" /></a>');
        $('#' + id).fadeIn('slow');

        $("#" + id + " a.zoom").fancybox();
        return false;
    });
	
}
    

