﻿$(document).ready(function() {
    $("a#slideToggle").click(function() {
        $(this).next().slideToggle('slow');
    });

    $("a#fadeIn").click(function() {
        $(this).next().fadeIn('slow');
    });

    $("a#fadeOut").click(function() {
        $(this).next().fadeOut('slow');
    });

    $("a#animate").click().toggle(function() {
        $(this).next().animate({
            height: 'show',
            opacity: 'show'
        }, 'slow');
        if (document.getElementById('container').style.height == "1000px") {
            document.getElementById('container').style.height = "1310px";
            document.getElementById('footer2').style.top = "1300px";
        }
        else {
            document.getElementById('container').style.height = "1000px";
            document.getElementById('footer2').style.top = "990px";
        }
    }, function() {
        $(this).next().animate({
            height: 'hide',
            opacity: 'hide'
        }, 'slow');
        if (document.getElementById('container').style.height == "1310px") {
            document.getElementById('container').style.height = "1000px";
            document.getElementById('footer2').style.top = "990px";
        }
        else {
            document.getElementById('container').style.height = "1000px";
            document.getElementById('footer2').style.top = "990px";
        }
    });
});
function setheight() {

}
