
//CSS_ONTHEFLY_BH
var CSS_OTF;
function createCss(){
  try{
    CSS_OTF = document.createStyleSheet();
  }catch(e){
    var css = document.createElement("style");
    document.getElementsByTagName("head")[0].appendChild(css);
    CSS_OTF = document.styleSheets[document.styleSheets.length -1]
  }
}
createCss();

//MENUS TABS
try{
    CSS_OTF.addRule(".sh","display:none;");
}catch(e){
    CSS_OTF.insertRule(".sh { display: none; }",0);
}


//$(".sh").css('display','none');

//MENU DESPLEGABLE
function mostrar(modulo,posicionx,posiciony){
    $('#'+modulo).css('display','block');
    if (posicionx>0){
        $('#'+modulo).css('bottom',posicionx+'px');
    }
    if (posiciony>0){
        $('#'+modulo).css('right',posiciony+'px');
    }
}

function ocultar(modulo){
    $('#'+modulo).css('display','none');
}


var rules_show_hide = {
    evento : function () {
              $('#pie_otros_medios').mouseover(function(){return mostrar('enlaces2',0,0); });
              $('#pie_otros_medios').mouseout (function(){return ocultar('enlaces2'); });
 							$('#enlaces2').mouseover(function(){return mostrar('enlaces2',0,0); });
              $('#enlaces2').mouseout (function(){return ocultar('enlaces2'); });
              $('#pie_asociados').mouseover(function(){return mostrar('enlaces1',0,0); });
              $('#pie_asociados').mouseout (function(){return ocultar('enlaces1'); });
 							$('#enlaces1').mouseover(function(){return mostrar('enlaces1',0,0); });
              $('#enlaces1').mouseout (function(){return ocultar('enlaces1'); });
              $('#pie_guias').mouseover(function(){return mostrar('enlaces0',0,0); });
              $('#pie_guias').mouseout (function(){return ocultar('enlaces0'); });
 							$('#enlaces0').mouseover(function(){return mostrar('enlaces0',0,5); });
              $('#enlaces0').mouseout (function(){return ocultar('enlaces0'); });
    }
}
$(document).ready(function ()
{
	rules_show_hide.evento();
});

