// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function toggle_visibility(listid, linkid) {
    var e = document.getElementById(listid);
    var l = document.getElementById(linkid);
    if(e.style.display == 'block')
    {
        e.style.display = 'none';
        l.style.background = 'transparent url(/images/plus.gif) no-repeat scroll left center';
    }
    else{
        e.style.display = 'block';

        l.style.background = 'transparent url(/images/minus.gif) no-repeat scroll left center';
    }
}

function showstuff(boxid){
    document.getElementById(boxid).style.display = 'block';
}

function hidestuff(boxid){
    document.getElementById(boxid).style.display = 'none';
}