jQuery(function($) {
	$('.productMoreDialog').each(function() {
		$(this).dialog({
			bgiframe: true,
			height: 600,
			width: 740,
			modal: true,
			autoOpen: false,
			closeOnEscape: true
		});

	});
	
	$('.productMoreLink').click(function() {
		var dialogId = $(this).attr('id').substring(4);
		$('#'+dialogId).dialog('open');
		
	});
});

