//AndyS: 25/10/2007 Modal Div for products

$(document).ready(function() {
	//alert("3d model");
	$('#ImageViewer3D').bind('click', function(e) {
		open3DModal();
	}).css('cursor','hand');
	
	$('#productImageClick').bind('click', function(e) {
		open3DModal();
	}).css('cursor','hand');
	
	
});

function open3DModal() {
	$('#modalOverlay').css('height',$(document).height());
	$('#modalOverlay').show();
	return false;
}







