﻿$(document).ready(function() {
    $('.slideshow').innerfade({
        speed: 'slow',
        timeout: 10000,
        type: 'sequence',
        containerheight: '161px'
    });

    var tipTipFriend = "#IconBar div#TipFriend";
    $(tipTipFriend).hide();
    $("#IconBar li a.email").click(function() {
        $(tipTipFriend + ":visible").slideUp("slow");
        $(tipTipFriend + ":not(:visible)").slideDown("slow");
        return false;
    });

    var sendComment = "#IconBar div#SendComment";
    $(sendComment).hide();
    $("#IconBar li a.comment").click(function() {
        $(sendComment + ":visible").slideUp("slow");
        $(sendComment + ":not(:visible)").slideDown("slow");
        return false;
    });
});