$(document).ready(function(){

	/* First paragraph style (after main title) */
	$('.post h3').each(function(){
		$(this).next('p').addClass('firstParagraph');
	});
	
	/*- Special class for linked images -*/
	$('.post img').each(function(){
		$(this).parent('a').addClass('imgHolderLink');
	});
	
	/*- Special class for videos -*/
	$('.post object').each(function(){
		$(this).parent('p').addClass('videoHolder');
	});
	
	/*- Pointer for comments -*/
	$('.comment-in').each(function(){
		$(this).append('<div class="pointer"></div>');
	});
});