(function( $ ) {
  $(document).ready(function() { 
    var url = window.location.href;
    var host =  window.location.hostname;
    var title = $('title').text();
    title = escape(title); //clean up unusual characters
 
    var tbar = '<div id="socializethis"><span>duvidas? </span><div style="position:absolute;left:250px;top:14px"><a id="minimize" href="#min" title="Minimizar"> <img src="minimize.png" width="9" height="9" border="0"/></a></div><div id="sicons">';
    tbar += '<a href="'+"javascript:atendimento()"+'" id="online" title="Atendimento"><img src="online.jpg"  alt="Online" width="32" height="32" border="0"/></a>';
    tbar += '</div><div id="chatwin" style="position:absolute;left:6px;width:257;height:290;text-align:left;padding-top: 0px;margin-top: 40px;background:#ffffff"><iframe SCROLLING="NO" frameborder="no" height = "288px" width = "250px" SRC="formaa.htm"></div></div>';
 
    // Add the share tool bar.
    $('body').append(tbar); 
    $('#socializethis').css({opacity: 1}); 
    // hover.
    $('#socializethis').bind('mouseenter',function(){
      $(this).animate({height:'335px', width:'260px', opacity: 1}, 300);
      $('#socializethis img').css('display', 'inline');   
    });
    //leave
    $('#socializethis').bind('mouseleave',function(){
      $(this).animate({ opacity: .7}, 300);
    });  
    // Click minimize
    $('#socializethis #minimize').click( function() { 
      minshare(); 
      $.cookie('minshare', '1');  
    }); 
 
    if($.cookie('minshare') == 1){
      minshare();
    }  
 
    function minshare(){
      $('#socializethis').animate({height:'35px', width: '93px', opacity: .7}, 300); 
      //$('#socializethis img').css('display', 'none');
      return false;
    }

    
  
  });
})(jQuery);
