$(function () {

	var thumbContainer1 = $('#wedding-gallery div.content-wrapper > div');
	thumbContainer1.hide().filter(':first').show();
	
	$('#wedding-gallery ul.thumbs a').click(function () {
		thumbContainer1.hide();
		thumbContainer1.filter(this.hash).fadeIn();
		$('ul.thumbs a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
	
});
