		
		timer = null;

		function fadeOutAlert(id){
			timer = setTimeout("doFadeAlert('"+id+"')",5000);
		}

		function doFadeAlert(id){
			$(id).fadeOut('fast');
			$(id).addClass('hide');
			$(id).html('');
			$(id).fadeIn('fast');
		}
		
		
		$(document).ready(function(){
			
			$('#dialog').jqm({overlay:60, trigger: false});
			$('#mlistdialog').jqm({overlay: 60, trigger: false});
    		
			$('#contactmodal').click(function() {
   	 			$('#dialog').jqmShow();
    			$('#mlistdialog').jqmHide();
    			return false;
 			 });
 			 
 			 $('#mlistmodal').click(function() {
   	 			$('#dialog').jqmHide();
    			$('#mlistdialog').jqmShow();
    			return false;
 			 });

 		});
