// JavaScript Document
function initRegisterBox() {
	jQuery('#logged-in-popup').dialog({			// Set up the login diaglog box
			autoOpen: false,
			modal: true,
			width: 325,
			zIndex: 4000,
			overlay: {
				backgroundColor: '#FFFFFF',
				opacity: 0.5
			}
		});
	
	// Add event handler to ALL item prices
	/*jQuery('.productlink').click(function (event) {
		event.preventDefault();
		jQuery('#logged-in-popup').dialog('open');
	});*/
}
