
jQuery(document).ready(function($) {

	// Cap off bottom of right sidebox
	$('#side').append('<div class="cap">&nbsp;</div>');

	// Use thickbox in Gallery
  tb_init('a.thickbox');//pass where to apply thickbox
  imgLoader = new Image();// preload image
  imgLoader.src = tb_pathToImage;

	// Open external links in a new window
	$('a[@href^=http]').each(function(){
		if(this.href.indexOf(location.hostname) == -1) {
			$(this).attr('target', '_blank').addClass('external');
		}
	});
});
