/**
 * Web71
 */ 
$(document).ready(function(){
  // syntaxe v pre [code]
  dp.SyntaxHighlighter.ClipboardSwf = '/js/syntax/clipboard.swf';
  dp.SyntaxHighlighter.HighlightAll('code');
  
  // outlinks
  $('#text a[href^="http://"]:not([href^="http://www.web71"]):not(:contains(" na Facebooku")):not(:contains(" na Twitteru"))').addClass("out");

  // sociální sítě
    $('#bookmarks li a').click(function(){
      var a=window,b=document,c=encodeURIComponent,d=a.open($(this).attr("href"),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=550px,width=680px,resizable=1,alwaysRaised=1");
      a.setTimeout(function(){d.focus()},300);
      return false;
    });
});