(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"><div id="sicons">';//icone para minimizar: <a href="#min" id="minimize" title="Miniminizar"> <img src="/images/minimize.png" /> </a>
	tbar += '<iframe src="/googleplus.html" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:68px; height:25px;" allowTransparency="true"></iframe>';
    tbar += '<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FCol%C3%A9gio-P%C3%A1rtenon%2F211456148866001&amp;send=false&amp;layout=standard&amp;width=57&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=25&amp;locale=pt_BR" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:57px; height:25px;" allowTransparency="true"></iframe>';
	tbar += '<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FCol%C3%A9gio-P%C3%A1rtenon%2F211456148866001&amp;send=false&amp;layout=standard&amp;width=95&amp;show_faces=false&amp;action=recommend&amp;colorscheme=light&amp;font=arial&amp;height=25&amp;locale=pt_BR" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:95px; height:25px;" allowTransparency="true"></iframe>';
    tbar += '</div></div>';
 
    // Add the share tool bar.
    $('body').append(tbar); 
    $('#socializethis').css({opacity: .7}); 
    // hover.
    $('#socializethis').bind('mouseenter',function(){
      $(this).animate({opacity: 1}, 220);//animacao colocar entre chaves antes da opcao opacity: height:'30px', width:'220px', 
      $('#socializethis img').css('display', 'inline');   
    });
    //leave
    $('#socializethis').bind('mouseleave',function(){
      $(this).animate({ opacity: .7}, 220);
    });  
    // Click minimize
    $('#socializethis #minimize').click( function() { 
      minshare(); 
      $.cookie('minshare', '1');  
    }); 
 
    if($.cookie('minshare') == 1){
      minshare();
    }  
 	$('.uiGrid').hide()
    function minshare(){
      $('#socializethis').animate({height:'15px', width: '30px', opacity: .7}, 220); 
      $('#socializethis img').css('display', 'none');
      return false;
    }  
  });
})(jQuery);
