$(document).ready(function() {
	$('#show, #shadowhide').hide();
	/*gallery DIV(TITLE) to string*/
	$('#congallery div').each(function() {
		var artistName = $('#congallery').attr('title');
		var picNum = $(this).attr('title');
		$(this).append('<table><tr><td><div class=\"iecatch\"><a href=\"'+picNum+'\"><img src=\"http://openskyartworks.com/content/artists/'+artistName+'/'+picNum+'.jpg\" alt=\"\" /></a></div></td></tr></table>');
		$(this).removeAttr('title');
	});
	/*gallery popup*/
	$('#congallery div table tr td a').click(function(event) {
		event.preventDefault();
		var artistName = $('#congallery').attr('title');
		var picNum = $(this).attr('href');
		$('#showimage').attr('src', 'http://openskyartworks.com/content/artists/'+artistName+'/'+picNum+'.jpg');
		$('#show, #shadowhide').show('fade', {}, 200);
	});
	$('.close a').click(function(event) {
		event.preventDefault();
		$('#show, #shadowhide').hide('fade', {}, 200);
	});
});
