/**
 * @author Davy
 */

 $(document).ready(documentReady);
	
 function documentReady()
 {	
	$(".socialmedia a[href^='http://']").attr('target','_blank');
	$("#posts .postcontent a[href^='http://']").attr('target','_blank');
	$("#posts .postcontent a.more-link[href^='http://']").attr('target','_top');
	$(".author a[href^='http://']").attr('target','_blank');
	
 }
 
