var components = new Array(
	'accordion', 'busy', 'button', 'carousel',
	'checkbox', 'customizablelist', 'datepicker', 'dropdown',
	'iconicmenu', 'imagedescription', 'lightbox', 'miniview',
	'optionsmenu', 'progressbar', 'radiobox', 'rating',
	'scroll', 'sortable', 'tabs', 
	'textlabel', 'textlink', 'tooltip', 'transitionbox',
	'transitionlist', 'testcomponent', 'slider'
);

function init()
{
	var loc = location.href;
	
	var hashIndex = loc.indexOf('#guarana_');
	
	if(hashIndex >= 0)
	{
		var hash = loc.substring(hashIndex + 9);
		
		if(componentExists(hash))
		{
			document.getElementById('preview_frame').src = 'demos/' + hash + '/sample_' + hash + '.html';
		}
	}
	
}
function componentExists(name)
{
	for(var i = 0; i < components.length; i++)
	{
		if(components[i] == name)
		{
			return true;
		}
	}
	return false;
}