/*****************************************************************************
* File: jsag_firstitem.js
* Author: Flavian Imlig
* Original Date: 
* Current Date: 24.03.2010
*
* Subject: Function to add css class to the first item of id "maincontent"
*          used on jsag.net
* 
* (c) flaviani webdesign
******************************************************************************/

function firstitem() {
  contelement = document.getElementById("maincontent");
  for (var i = 0; i < contelement.childNodes.length; i++) {
    if (contelement.childNodes[i].nodeType == 1) {
      var element = contelement.childNodes[i];
      break;
      }
    }
  currclass = element.className;
  element.className = "first_item "+currclass;
  }
