﻿// JScript File

function expandTransaction(transId, sender){
    var isShown = false;

    if ($("#"+transId).is(":visible") == true)
    {
        isShown = true;
    }
    
    $(".details").hide();
    
    var src = $("#btn"+transId).attr("src").replace("colapse", "expand"); 
        $(".expandCollapse").attr("src", src);    

    if (isShown == false)
    {
        $("#"+transId).show();

        var src = $("#btn"+transId).attr("src").replace("expand", "colapse");
            $("#btn"+transId).attr("src", src);
    }
}

$(document).ready(function () {
	$("#MainMenu").next().css('clear', 'none');
});


