function SwarmOnlineMenu(nodes)
{

	$(nodes).hide();

	$(nodes).parent().children("a").unbind("click");

	$(nodes).parent().children("a").click(function(){
		SwarmOnlineMenu($(this).parent().parent().children("li").children("ul"));

		$(this).css("font-weight", "bold");
		
		$(this).parent().children("ul").show("fast");
		
		if( $(this).hasClass('homepage')) {
			var homepage = $(this).text().replace(' ', '');
			$('#content').html('<img src="resources/images/homepages/' + homepage + '.jpg" alt="' + $(this).text() + '" />');
		}
	}).css("font-weight", "normal");

	if( $(nodes).children("li").children("ul").length > 0 )
	{
		SwarmOnlineMenu($(nodes).children("li").children("ul"));
	}
}

function SwarmOnlineMenuPages(nodes)
{

	//$(nodes).hide();

	$(nodes).parent().children("a").unbind("click");

	$(nodes).parent().children("a").click(function(){
		SwarmOnlineMenu($(this).parent().parent().children("li").children("ul"));

		$(this).css("font-weight", "bold");
		
		$(this).parent().children("ul").show("fast");
		
		if( $(this).hasClass('homepage')) {
			var homepage = $(this).text().replace(' ', '');
			$('#content').html('<img src="resources/images/homepages/' + homepage + '.jpg" alt="' + $(this).text() + '" />');
		}
		
	}).css("font-weight", "normal");

	if( $(nodes).children("li").children("ul").length > 0 )
	{
		SwarmOnlineMenu($(nodes).children("li").children("ul"));
	}
}
