jQuery(document).ready(function($) { 
	/*
$=jQuery;
	$('.gallery a').attr('rel','gallery').colorbox({maxWidth:"95%", maxHeight:"95%"});
*/

	$('.child-images .post-images a').colorbox({maxWidth:"95%", maxHeight:"95%"});
	var childImages = $('.child-images');

	$('body.tag .hentry h2 a').click(function(){
		$(this).parents('#content').find('h2.selected').removeClass('selected');
		$(this).parent().addClass('selected');
		var path = $(this).attr('href').split('/');
		pageName = path[path.length-2];
		
		childImages.hide().filter('.child-of-'+pageName).show();
		
		return false;
	}).eq(0).trigger('click');
	
	}); 

