var $root = 
{
	// Initialise System Root JavaScript
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	
	'init': function()
	{
		$root.ad_init();
		
		$('#tradergo').fbdialog('/text:trader_signup', { 'width': 500, 'height': 100, 'resizable': true, 'close': '#close', 'static': { 'top': 450 } });
		
		$('#captchaReload').click(function() {
			$('#captchaImage').attr('src', '/includes/ajax/script/captcha.php?' + (new Date()).getTime());
		});
	},
	
	// Initialise Advertisements Popups
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	
	'ad_init': function()
	{
		$('#advert3').fbdialog('/text:free_delivery', { 'width': 500, 'height': 100, 'resizable': true, 'close': '#close', 'static': { 'top': 450 } });
	}
};

jQuery(function() { $root.init(); });
