// JavaScript Document

jQuery(function( $ ){

// manchete thumbs
  $("#atalho1").mouseover(function(){
  document.getElementById("not-atalho1").style.display="block";
  document.getElementById("not-atalho2").style.display="none";
  document.getElementById("not-atalho3").style.display="none";
  });
  
    $("#atalho1").mouseout(function(){
  document.getElementById("not-atalho1").style.display="none";
  });
	
  $("#atalho2").mouseover(function(){
  document.getElementById("not-atalho1").style.display="none";
  document.getElementById("not-atalho2").style.display="block";
  document.getElementById("not-atalho3").style.display="none";
  });
  
    $("#atalho2").mouseout(function(){
  document.getElementById("not-atalho2").style.display="none";
  });

  $("#atalho3").mouseover(function(){
  document.getElementById("not-atalho1").style.display="none";
  document.getElementById("not-atalho2").style.display="none";
  document.getElementById("not-atalho3").style.display="block";
  });
  
    $("#atalho3").mouseout(function(){
  document.getElementById("not-atalho3").style.display="none";
  });
 
// ourinhos - regiao - comercio




});
