$(document).ready( function() {

// external site links
	$("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])")
		.attr("target","_blank")
		.attr("title","Open in new window");

// Wrap image with a tag link to itself
	$('fieldset img').each(function() {
		$(this).wrap("<a href='" + $(this).attr('src') + "' title='" + $(this).attr('alt') + "' class='thickbox' target='_blank'></a>");
	});

});
