// JavaScript Document
  $(document).ready(function(){
							 
							 
							 

////////////////////////////////////////////////////
//////////////////// BUTTONS ///////////////////////
////////////////////////////////////////////////////

 $("#Inicial").hover(
      function () {
     		$(this).attr("src", "Images/Home_Over.gif");	
      }, 
      function () {
      		$(this).attr("src", "Images/Home_Up.gif");
      }
    );
  $("#Contato").hover(
      function () {
     		$(this).attr("src", "Images/Contato_Over.gif");	
      }, 
      function () {
      		$(this).attr("src", "Images/Contato_Up.gif");
      }
    );

$("#LinkPopup1").click(function () {
				$("#Popup").hide();
 		}
    );


});
  
