$(document).ready(function(){
	$("body.resources .content ul li ul").each(function() {
		var items = $(this).children('li');
		if(items.length > 2) {
			$(this).children('li:gt(2)').hide();
			$(this).after(
				$(document.createElement('a')).append(
					document.createTextNode('[+]')
				).click(
					function() {
						var list = $(this).parents('li').children('ul');
						if(!list.hasClass("showall")) {
							items.show();
							$(this).text('[-]');
						}
						else {
							list.children('li:gt(2)').hide();
							$(this).text('[+]');
						}
						list.toggleClass("showall");
					}
				).attr({
					class : 'showmore',
					href : 'javascript:void(0)'
				})
			);
		}
	});

	$("#header h1 a").hide();
	$("#header h1").flash({
			src: '/swf/logo.swf',
			width: 710,
			height: 130
		},
        { version: 8 }
	);

});