//Custom Scripts for OWUG
jQuery(document).ready(function($){
	jQuery('.home .postcontent p a, .commentcontent p a').each(function(){
	
		var linksrc = jQuery(this).attr("src");
	
		var screenshot = '<a href="'+ this +'" target="_blank" alt="snapsnot_'+ this +'" title="'+ this +'"><img src = "http://images.websnapr.com/?size=202x152&key=sjiY2jQ0zx00&url=' + this +'"/></a>';
		
		jQuery(this).parent().append(screenshot);
	
	});
});
