﻿$(document).ready(function () {
    //hide the all of the element with class msg_body
    $(".msg_body").hide();
    //toggle the componenet with class msg_body
    //        $(".msg_head").click(function () {
    //            $(this).prev(".msg_body").slideToggle(200);
    //            $(this).html('hide me');
    //        });
    //$("a.anchorLink").click(function () {
    //       $(this).prev(".msg_body").slideDown(200);
    //      $(this).html('Hide');
    // },
    //function () {
    //     $(this).prev(".msg_body").slideUp(200);
    //$(this).html('Read More...'); 
    $(".msg_show").next().hide().prev().click(function () {
        $(this).next().slideToggle(200);
        
    });
});

   // following the anchor tag!
   /* $(document).ready(function () {
        $("a.anchorLink").anchorAnimate()
    });

    jQuery.fn.anchorAnimate = function (settings) {

        settings = jQuery.extend({
            speed: 200
        }, settings);

        return this.each(function () {
            var caller = this
            $(caller).click(function (event) {
                event.preventDefault()
                var locationHref = window.location.href
                var elementClick = $(caller).attr("href")

                var destination = $(elementClick).offset().top;
                $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination }, settings.speed, function () {
                    window.location.hash = elementClick
                });
                return false;
            })
        })
    }*/


