/* 
 * All modal dialog instance is created here.
 */
$(function(){
	$(".modalDialogTrigger").click(function(){
		var modal_content = $("#"+this.name).html();
		
		modal_dialog = Barclaycard.modalDialog.createModal({
			html: modal_content,
			width: 643,
			closeable: true
		});

		modal_dialog.show();

		$(".modalDialog").find(".btnClose").click(function(){
			if (modal_dialog) {
				modal_dialog.close();
				$(modal_dialog.shell()).remove();
			}
		});
		return false;
	});
});


