function hashRequested(){
       initHash = window.location.hash;
       initHash = initHash.toString();
       
       if(initHash.indexOf('#company') != -1){
           element = jQuery('.companyMenuImage');
           companyMenuMainClicked(element);
       }

       if(initHash.indexOf('#contact') != -1){
           element = jQuery('.contactMenuImage');
           contactMenuMainClicked(element);
       }

       if(initHash.indexOf('#news') != -1){
           element = jQuery('.newsMenuImage');
           newsMenuMainClicked(element,true);
       }

       if(initHash.indexOf('#products') != -1 || initHash.indexOf('#cat') != -1 || initHash.indexOf('#item') != -1){
           element = jQuery('.productsMenuImage');
           productsMenuMainClicked(element,true);
       }

}


