if(document.getElementById("msgbox")) {
	
	document.getElementById("msgbox_close_img").onclick = function(e) {
		$('msgbox').fade()
	}
	
	new Effect.Opacity(
	   'msgbox', { 
	      from: 0.0, 
	      to: 1.0,
	      duration: 1.0
	   }
	);
	
	new Draggable('msgbox');
	
	
	
}
  
