/*
 * All JavaScript to be fired when the DOM is ready
 */
$(document).ready(function() {

    $(".thumbbox").thumbBox({
		"previewWidth" : 50,
		"previewHeight" : 50,
		"fullWidth" : 524,
		"showCaption" : false
	});

	/*
	 * Technically valid workaround for target="_blank"
	 */
	$('a[rel="external"]').attr('target', '_blank');

});

