jQuery(document).ready(function() {
	
	// attach highslide-CSS-class to linked images in a post
	jQuery(".post a[href$='jpg'] img, .post a[href$='JPG'] img, .post a[href$='jpeg'] img, .post a[href$='JPEG'] img, .post a[href$='png'] img, .post a[href$='PNG'] img, .post a[href$='gif'] img, .post a[href$='GIF'] img, .post a[href$='bmp'] img, .post a[href$='BMP'] img, .post a[href$='tiff'] img, .post a[href$='TIFF'] img, .post a[href$='tif'] img, .post a[href$='TIFF'] img").parent().addClass("highslide");

	// attach onclick-eventhandling to highslide-images with a different slideshow-group in each post
	jQuery(".post").each(function(index) {		
		jQuery(this).find("a.highslide").each(function() {
			this.onclick = function() {
				return hs.expand(this, { slideshowGroup: index });
			}
		});
	});

});
