jQuery(document).ready(function($) {
	//Add css class of "lightbox" to post image anchor tags
	$( ".post a:has(img)" ).addClass("lightbox");
	
	// Add lightbox functionality to post image anchor tags with css class of "lightbox"
	$( "a.lightbox" ).lightBox();
});