/* SILVERBACK */
/* vBulletin Forum API Access
----------------------------------------------------------------------------- */

		
	$(window).load(function() {
				
		// Load Forum Feed
		$.get('/feeds/external/forum.xml', function(data) {
		
			$(data).find('item').each(function() { 

				var title = $(this).children('title').text();
				var link = $(this).children('link').text();
												
				$('<li><h4><a href="/forum_preview?first_page=' + link + '">' + title + '</a></h4></li>').appendTo('#forum ul.threads');

			});
			
			
			$('#forum ul.threads li:last').addClass('last');
			$('#forum ul.threads li:odd').addClass('alt');
			
			// Truncate Thread Titles
			$('#forum ul.threads > li').each(function(){
				
				if ($(this).children().children('a').text().length >= 40) {
								
					var text = $(this).children().children('a').text().slice(0,40);

					$(this).children().children('a').text(text);
					$(this).children().children('a').append('<var>&hellip;</var>');
				
				}
							
			});
			
					
		});

	});
