$(function(){
	var imageGallery = $('#image-galleries');
	imageGallery.find('.wp-caption:nth-child(2n)').addClass('second');
	imageGallery.each(function(){
		$(this).find('p.wp-caption-text').wrap('<a href="'+$(this).find('a.gallery').attr('href')+'" rel="shadowbox;height=450;width=600"></a>');
		$(this).find('a.gallery').attr('rel','shadowbox;height=450;width=600');
	});
	
	Shadowbox.init();
});
