/*
Name		:	Object - Link
Author/s	:	Yang Wong
Related		:
*/

// CLASS //

var COM_CIPHERCITIES_LINK = Class.create();
COM_CIPHERCITIES_LINK.prototype =
{

	// CONSTRUCTOR //

	initialize: function()
	{
		// PROPERTIES //
		this.title	= null;
		this.url	= null;
	}

}
