(function($){
	$.fiveyear_blessing={
		init:function(){
			$("#mms").click($.fiveyear_blessing.mms);
			$("#sms").click($.fiveyear_blessing.sms);
			$("#phone").click($.fiveyear_blessing.phone);

			
			$(".message_dialog").dialog({
				title:"Survey 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(){
					
				}
			});
		},  
		mms:function(){
			
			$(".message_dialog").html($(".mms").html()); 
			$(".message_dialog").dialog("open");
		},
		sms:function(){
			
			$(".message_dialog").html($(".sms").html());
			$(".message_dialog").dialog("open");
		},
		phone:function(){
			
			$(".message_dialog").html($(".phone").html());
			$(".message_dialog").dialog("open");
		}

	}
})(jQuery);

