﻿// JScript File


        $(document).ready(function(){
        $(".msg_body").hide();
        $(".msg_head").toggle(function(){
        $(this).next(".msg_body").slideDown(100);
        $(".msg_head").css("background-image", "url(/Images_new/arrow_right.gif)");
        }, function(){
        $(this).next(".msg_body").slideUp(300);
        $(".msg_head").css("background-image", "url(/Images_new/arrow_right.gif)");
        });
        });
        
        
        $(document).ready(function(){
        $(".msg_body").hide();
        $(".msg_head_small").toggle(function(){
        $(this).next(".msg_body").slideDown(100);
        }, function(){
        $(this).next(".msg_body").slideUp(300);
        });
        });
