$( document ).ready( function(){		
	$('.articleBody img').wrap('<div class="post-img"><div class="img-overlay"></div></div>');
	$('.disp-summary .articleBody .img-overlay').append('<div class="frame"><div class="bg"><a class="readmorelink" href="#">read more</a></div></div>');
	$('.disp-full .articleBody .img-overlay').append('<div class="frame"><div class="bg"></div></div>');
	
	
	$('h3.articleTitle').each(function(){
			// for each post with img, put title after image
			$(this).parent().find('.post-img').after( $(this) );
	 });

	$('.disp-summary a.readmorelink').each(function(){
			// for each read more link on image frame, set the link to same as article title link
			var thelink = $(this).parents('.post-img').next('h3.articleTitle').find('a').attr('href');
			$(this).attr('href', thelink);
	 });
	
	$('.article.blog498:nth-child(even) .bg').css("background-image","url(templates/css/images/img-overlay2.png)");
	
});


