
function MyLibraryUtils()
{
	this.domain = "dewey.brooklyn.cuny.edu"; // default domain
	this.setLoginMessage = function (id, config)
	{
		$('#'+id).load('http://'+this.domain+'/mylibrary/async/?view=login_message',config).fadeIn("slow");
	}
}
MyLibrary = new MyLibraryUtils();
