function clickableDiv() {
 aTags = document.getElementsByTagName('a');
 for (var aI = 0; aI < aTags.length; aI++) {
 if (aTags[aI].parentNode.parentNode.className == 'stire') {
 aTags[aI].parentNode.parentNode.href = aTags[aI].href
/* aTags[aI].parentNode.parentNode.className += ' jsClick';*/
 aTags[aI].parentNode.parentNode.onclick = function() { window.location = this.href; }
 aTags[aI].parentNode.parentNode.onmouseover = function() { this.className = 'stireHover'; }
 aTags[aI].parentNode.parentNode.onmouseout = function() { this.className = 'stire'; }
 }
 }
}



/*-----------------------------------------------------------------
------------------------- Add Event Function ----------------------
-----------------------------------------------------------------*/


function addEvent(obj, evType, fn){ 
 if (obj.addEventListener){ 
   obj.addEventListener(evType, fn, true); 
   return true; 
 } else if (obj.attachEvent){ 
   var r = obj.attachEvent("on"+evType, fn); 
   return r; 
 } else { 
   return false; 
 } 
}


//addEvent(window, 'load', init);
addEvent(window, 'load', clickableDiv);