﻿/// <reference path="jquery-1.2.6.pack.js" />
$(document).ready(function() {
    var t = $('#toggle_gallery');
    var b = $('#AnotherFotos');
    $(t).slideUp();
    $(b).click(
    function() {
        
        $(t).slideToggle("slow");
    });
});