﻿$(document).ready(function() 
{
    $("#homepage-features div").each(function()
    {
        var self = this;
        $(self).children("a").bind("mouseover", function()
        {
            $.fx.off = true;
            $("#homepage-features div ul").hide();
            $.fx.off = false;
            $(self).children("ul").slideDown(200, function()
            {
                $("#homepage-features div ul").hide();
                $(this).show();
            });
        })
    }).bind("mouseout", function()
    {
        $.fx.off = true;
        $("#homepage-features div ul").hide();
    });
});

function toggleid(targetid) {
  var isnow = document.getElementById(targetid).style.display;
  if ( isnow == 'block' ) {
     document.getElementById(targetid).style.display='none';
  } else {
     document.getElementById(targetid).style.display='block';
  }
}

function showid(thingid) {
   document.getElementById(thingid).style.display = 'block';
}

function hideid(thingid) {
   document.getElementById(thingid).style.display = 'none';
}

function setClass(thingid, new_classname) {
   document.getElementById(thingid).className = new_classname;
}
