var VidsTv =
{
	init: function()
	{
		$('szSearchQuery').select();
		LoadingImage.init();
	},
	
	getLoadingImage: function(szText)
	{
		return LoadingImage.getImage(szText);
	},

	getBaseUrl: function()
	{
		if (document.location.host.match(/vids.tv/i))
		{
			return 'http://' + document.location.host + '/';
		}
		
		return 'http://' + document.location.host + '/vids_v4/';
		
	}
}

Event.observe(window, 'load', VidsTv.init);