﻿function toggle_visibility(id) {
   var e = document.getElementById(id);
   if(e.style.display == 'block')
      e.style.display = 'none';
   else
      e.style.display = 'block';
}

function set_mouse_pointer(obj)
{
    obj.style.cursor='pointer';
}

$(document).ready(function() { InitBoxLinks(); });

function InitBoxLinks() 
{
    $(".boxLinkContainer .boxLinkInfo").hide();
    $(".boxLinkContainer a").click(function() { BoxLinkContainer_Click($(this)); })
}

function BoxLinkContainer_Click(obj)
{
    $(obj).siblings(".boxLinkInfo").toggle();
    return false;
}
