$(function(){
	var container = ['postbody', 'wrath_middle_news_postings'];
	$.each(container, function() {
		$('.' + this + ' img').each(function(){
			// check parent element
			if (this.parentNode.nodeName == 'A') {
				return true;
			}
			if (this.width+'px' != $(this).css('max-width')) {
				return true;
			}
			var aElem = document.createElement("a");
			$(aElem).attr('href', $(this).attr('src')).attr('class', 'fancybox');
			$(this).wrap(aElem);
			$(this).attr('alt', '')
		});
	});
	
	$('.fancybox').fancybox({
		'zoomOpacity' : true,
		'overlayShow' : true,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'imageScale' : true
	});
});