$(function()
{
  $('#btfav').click(function() 
  {
    if (window.sidebar) 
    {
      window.sidebar.addPanel(document.title, location.href , "");
    } 
    else if(window.external) 
    {
      window.external.AddFavorite(location.href, document.title); 
    }
    return false;
  });
  
  /****** IMAGENS AMBIENTE ********/
  $('#imgAmbContainer').cycle(
  { 
    fx:                 'fade', 
    timeout:            5000,
    speed:              2500
  });  
  
  /********* LOGIN **********/
  var login_usr=$("#input_username").val();
  $("#input_username").focus(function()
  {
    if($(this).val()==login_usr)
      $(this).val('');
  });
  $("#input_username").blur(function()
  {
    if($(this).val()=='')
      $(this).val(login_usr);
  });
  
  $("#input_password").focus(function(){$(this).val('');});
  
  
  $('#menu_principal').menuBox();
  
  
  var newsletter=$("#inputNewsletter").val();
  $("#inputNewsletter").focus(function()
  {
    if($(this).val()==newsletter)
      $(this).val('');
  });
  $("#inputNewsletter").blur(function()
  {
    if($(this).val()=='')
      $(this).val(newsletter);
  });
}); 