	jQuery(function($){
	$('.main_img').live('click', function() 
	{
		$.splash("image-viewer").html('<img src='+$(this).attr('big')+' id="big-image-view" style="max-height: 550px; max-width: 700px">').hide();
		$("#big-image-view").load(function()
		{
			$("#image-viewer").show();
			if($("#big-image-view").height() > 550) $("#big-image-view").css('height', '550px');
			$("#image-viewer").trigger('reposition');
		});
	});
	});
