/*
 -------------------------------------------------
| Autor: Rico Kuntze, M.Sc. Industrial Management |
| Mediadesign Vogel (http://www.md-v.de)          |
| Modul: CMS-Komponente                           |
| Datum: 03.12.2010                               |
 -------------------------------------------------
*/

/* JS-SUBMENU by Rico Kuntze (MD-V) */
var timeout = new Array();

function showSubmenu(obj)
{
    var jQueryObj = $(obj); 
    var idArray = jQueryObj.children('a:first').attr('href').split('-');
    var id = idArray[idArray.length-1];
    
    // andere Menüs ausblenden
    jQueryObj.parent().children('li').children('ul').hide();
    
    clearTimeout(timeout[id]);
    jQueryObj.children('ul:first').show();
}

function hideSubmenu(obj)
{
    var jQueryObj = $(obj); 
    var idArray = jQueryObj.children('a:first').attr('href').split('-');
    var id = idArray[idArray.length-1];
    
    timeout[id] = setTimeout(function(){
        jQueryObj.children('ul:first').hide()
    }, 500);
}

function getposOffset(what, offsettype)
{
    var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
    var parentEl=what.offsetParent;
    while (parentEl!=null)
    {
        totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
        parentEl=parentEl.offsetParent;
    }
    return totaloffset;
}
/* JS-SUBMENU ENDE by Rico Kuntze (MD-V) */
