(function($){
	$.fiveyear_blessing={
		init:function(){
			$("#oms").click($.fiveyear_blessing.oms);
			$("#pms").click($.fiveyear_blessing.pms);

			
			$(".message_dialog").dialog({
				title:"Telephone Interview Platform",
				dialogClass:"jquery_ui_dialog",
				draggable:true,
				bgiframe: true,
				autoOpen: false,
				resizable:true,
				hide: 'slide' ,
				position:"center",
				//minHeight:350,
				//minWidth:400,
				height: 300,
				width:400,
				modal: true,
				buttons: {},
				close: function() {},
				open:function(){
					
				}
			});
		},  
		oms:function(){
			
			$(".message_dialog").html($(".oms").html()); 
			$(".message_dialog").dialog("open");
		},
		pms:function(){
			
			$(".message_dialog").html($(".pms").html());
			$(".message_dialog").dialog("open");
		}


	}
})(jQuery);

