$(window).load(function(){

	$('div.articleimg').each(function(){
	
		$(this).find('a img').wrap("<div class='image'></div>");
		
		var imageWidth = $(this).find('img').width();
		
		if(imageWidth > 150){
			$(this).css('width', imageWidth + 'px');
			$(this).next('p.caption').css('width', imageWidth + 'px');
			$(this).css('position', 'relative');
			$(this).css('left', '0');
		}else{
			$(this).css('width', '150px');
			$(this).css('position', 'relative');
			$(this).css('left', '0');
		}
		
		if($(this).find('a.enlarge')){
			$(this).find('a.enlarge div.image').append('<b>Enlarge</b>');
		}
	});
	
	$("a.enlarge").fancybox({
		'titleShow'     : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
});