$(document).ready(function() {
	// mark all external links
	//$("#content a").not("[href^=/]").not("[href^=#]").prepend("<span class='external'><img src=\"/theme/images/external_link.gif\" /></span>");
	
	// column lists (required to be before "toggle divs")
	$('#archive ul').columnizeList({cols: 4});
	
	// toggle divs
	$('.toggle-content').hide();
	$('.toggle').click(function(e) {
		$('.toggle-content', this.parentNode.parentNode).slideToggle();
	});
	
	// toggle vcards
	$('.vcard').hide();
	$('a.vcard-show').click(function(e) {
		$('.vcard').toggle();
	});
	
	// textile comments
	$('.textile-help-content').hide();
	$('a.textile-help-toogle').click(function(e) {$('.textile-help-content').toggle();return false;});
	// spam protection
	$("span.jmail").defuscate();
	
	// format dates
	$(".date").each(function(i) { this.innerHTML = this.innerHTML.replace(/(\d{4})-(\d{2})-(\d{2})/, '$3.$2.$1');});
	
	// tabs
	$("#sidebar").tabs({ fxFade: true});
	
	// google analytics
	_uacct = "UA-265576-1";
	urchinTracker();
	
	// syntax highlighter
	dp.SyntaxHighlighter.ClipboardSwf = '/themes/javascript/highlighter/clipboard.swf';
	dp.SyntaxHighlighter.HighlightAll('code');
});

// thickbox init
var tb_pathToImage = "/theme/javascripts/thickbox/loadingAnimation.gif";