(
	function(excustom){
		excustomObj = 
			{
				init : function(){
						frm = excustom("#respond form");
						var dy = excustom("body");
						dy.mouseover(function(){
								frm.show();
								dy.unbind('mouseover');
								return true;
							});
						return;				
					}
					
			};		
		excustom(document).ready(function(){
			excustomObj.init();
			frm.hide();
		})
	}
)(jQuery);
