function showPainting(imageName) {
	
	window.open("http://www.warwickhenderson.co.nz/painting/" + imageName + "/", "painting", "height=700, width=560, resizable=yes, status=0, toolbar=no, location=yes, menubar=no, scrollbars=yes");
	//window.open("http://whg.codeworx.net/painting/" + imageName + "/", "painting", "height=700, width=560, resizable=yes, status=0, toolbar=no, location=yes, menubar=no, scrollbars=yes");

}

function checkDownload() {
	var link = document.getElementById('link');
	link.style.visibility = "hidden";
	var check = document.getElementById('check');
	check.style.visibility = "visible";
}

$(document).ready(function() {
  $('#info p:gt(1)').hide();
  $('span.more').click(function() {
        $('#info p:gt(1)').animate({height: "show", width: "show", opacity:"show"}, 'slow');
    	$(this).hide();
  });
});

$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});