//////////////////////////////////////////
// JAVASCRIPT FUNCITONS WRITTEN BY      //
// SEAN GALLAGHER                       //
// www.GallagherWebsiteDesign.com       //
//                                      //
// Copyright 2010. All Rights Reserved. //
//////////////////////////////////////////

////////////////////////
// HIDE SHOW ELEMENT //
///////////////////////
function hideShow(elm,forced)
{
 if(!forced)
 {
  if(document.getElementById(elm).style.display=='block') { document.getElementById(elm).style.display = 'none'; }
  else { document.getElementById(elm).style.display = 'block'; }
  return false;
 }
 else
 {
  if(forced=='show') { document.getElementById(elm).style.display = 'block'; }
  else { document.getElementById(elm).style.display = 'none'; }
 }
}

///////////////////
// CHANGE COLOR //
//////////////////
function changeColor(elm,color)
{
 document.getElementById(elm).style.backgroundColor = color;
}
