/**
 * script.js
 * ---
 * This is where cars... err... the application live!
 * ---
 * @author:  David Rodriguez
 * @version: 1.0.0 ~ Pre-Alpha-Gamma-Beta-Shit-Is-Proof-Of-Concept
 *
 */
var Core = (function(){
	var module = {};

	module.Init = function()
	{
		// Not implemented.
	};
	
	module.AddLink_old = function()
	{
		$(function(){
			$("#dialog-confirm").dialog();
		});
	};
	
	module.AddLink = function()
	{
		$(function()
		{
			$("#dialog-addlink").dialog({
				autoOpen: false,
				closeOnEscape: false,
				draggable: false,
				height: 300,
				width: 500,
				modal: true,
				stack: false,
				title: "Add a Link",
				buttons:
				{
					"Create": function()
					{
					},
					Cancel: function()
					{
					}
				},
				close: function()
				{
				}
			});
		});
	};
	
	module.AddCategory = function()
	{
	};	

	return module;
}(Core || {}));

// Lets get this party started...
$(document).ready(function()
{
	Core.Init();
});
