// JavaScript Document

jQuery(function( $ ){

  document.getElementById("fundo-grupo-ourinhos").style.backgroundImage="url(imagens/not-grupo-ourinhos-tit1.gif)";
  document.getElementById("fundo-grupo-regiao").style.backgroundImage="url(imagens/not-grupo-regiao-tit2.gif)";
  document.getElementById("fundo-grupo-comercio").style.backgroundImage="url(imagens/not-grupo-comercio-tit2.gif)";

  $("#not-ourinhos-link").mouseover(function(){
  document.getElementById("fundo-grupo-ourinhos").style.zIndex="70";
  document.getElementById("fundo-grupo-regiao").style.zIndex="60";
  document.getElementById("fundo-grupo-comercio").style.zIndex="50";
  document.getElementById("fundo-grupo-ourinhos").style.backgroundImage="url(imagens/not-grupo-ourinhos-tit1.gif)";
  document.getElementById("fundo-grupo-regiao").style.backgroundImage="url(imagens/not-grupo-regiao-tit2.gif)";
  document.getElementById("fundo-grupo-comercio").style.backgroundImage="url(imagens/not-grupo-comercio-tit2.gif)";
  document.getElementById("not-grupo-ourinhos").style.display="block";
  document.getElementById("not-grupo-regiao").style.display="none";
  document.getElementById("not-grupo-comercio").style.display="none";
  });
  
  $("#not-regiao-link").mouseover(function(){
  document.getElementById("fundo-grupo-ourinhos").style.zIndex="50";
  document.getElementById("fundo-grupo-regiao").style.zIndex="70";
  document.getElementById("fundo-grupo-comercio").style.zIndex="60";
  document.getElementById("fundo-grupo-ourinhos").style.backgroundImage="url(imagens/not-grupo-ourinhos-tit2.gif)";
  document.getElementById("fundo-grupo-regiao").style.backgroundImage="url(imagens/not-grupo-regiao-tit1.gif)";
  document.getElementById("fundo-grupo-comercio").style.backgroundImage="url(imagens/not-grupo-comercio-tit2.gif)";
  document.getElementById("not-grupo-ourinhos").style.display="none";
  document.getElementById("not-grupo-regiao").style.display="block";
  document.getElementById("not-grupo-comercio").style.display="none";
  });
  
  $("#not-comercio-link").mouseover(function(){
  document.getElementById("fundo-grupo-comercio").style.zIndex="70";
  document.getElementById("fundo-grupo-regiao").style.zIndex="60";
  document.getElementById("fundo-grupo-ourinhos").style.zIndex="50";
  document.getElementById("fundo-grupo-ourinhos").style.backgroundImage="url(imagens/not-grupo-ourinhos-tit2.gif)";
  document.getElementById("fundo-grupo-regiao").style.backgroundImage="url(imagens/not-grupo-regiao-tit2.gif)";
  document.getElementById("fundo-grupo-comercio").style.backgroundImage="url(imagens/not-grupo-comercio-tit1.gif)";
  document.getElementById("not-grupo-ourinhos").style.display="none";
  document.getElementById("not-grupo-regiao").style.display="none";
  document.getElementById("not-grupo-comercio").style.display="block";
  });
  });
