$(function() {

	//Open external links in a new tab
	$("a[rel=external]").attr('target', '_blank');
	
	//Remove IE6 image flicker
	try {document.execCommand('BackgroundImageCache', false, true);} catch(err) {}
	
	//Initialise fancyboxes
	if ($('a.fancybox').length) $('a.fancybox').fancybox();

});
