// g13

$(document).ready(function() {
	var windowHeight = $(window).height();
	$('.left').css('height', windowHeight);
	$('.gallery a').attr('rel', 'prettyPhoto[the_gallery]');
	$("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'light_square' });
	$('.thumbnail').click(function() {
		$.prettyPhoto.open($(this).attr('src'),$(this).attr('alt'),'');
	});
	$('.wp-caption a').click(function() {
		$.prettyPhoto.open($('img', this).attr('src'),$(this).attr('title'),'');
		return false;
	});
	
})