(function($) {

$(document).ready(function() {
	
	/* Photo Gallery */	
	$('ul#posts img').attr('src', function(index, value){
		return value.insert('/thumbnail', 21);
	});
	
	$('ul#posts').gallery();
	$('ul#posts li:first-child a').trigger('click');
});

})(jQuery);