$(document).ready(function() {
	/*var highestCol = Math.max($('#sub1 div.p').height(),$('#sub2 div.p').height());
	$('#subwrapper div.p').height(highestCol);*/


	$('#sub1 #galleryImages a.button').click(function() {

		var bigImageSrc = $(this).children('img').attr('src').replace('.thumb.jpg', '.jpg');

		$(this).attr('href', '#');

		var bigImage = document.createElement('img');
		bigImage.src = bigImageSrc;
		var bigImageSizes = new Array(bigImage.width, bigImage.height);

		var headline = $(this).children('span').children('strong').text();
		var infoText = $(this).children('span').children('span').text();
		var artistInfo = $(this).parent().children('span.artist').html();
		var bigImageA = document.createElement('a');
		bigImageA.id = 'bigImage';
		bigImageA.href = bigImageSrc;
		bigImageA.appendChild(bigImage);

		$(bigImage).load(function() {
			$('#sub2 div.p').html('<h3>'+ headline +' <strong>'+ artistInfo +'</strong></h3>');
			$('#sub2 div.p').append('<p>'+ infoText +'</p>');
			$('#sub2 div.p').append(bigImageA);
			$(bigImageA).lightBox();
/*			$(bigImageA).click(function() {
				$(this).children('img').css('position', 'absolute');
				$(this).children('img').animate({
					'width': $('body').width()+'px'
				}, 1500);
			});
*/
		});

	//	alert(bigImageSrc);

		return false;
	});

});