$(document).ready(function() {
	$('ul.slideout li').each(function() {
		var _self = this;

		function showDetails() {
			if(!$(_self).hasClass('expanded')) {
				$('.expanded div,blockquote').hide('fast');
				$('.expanded').removeClass('expanded').addClass('collapsed');

				$('div,blockquote', _self).show('fast');
				$(_self).addClass('expanded').removeClass('collapsed');
			} else {
				$('.expanded div,blockquote').hide('fast');
				$('.expanded').removeClass('expanded').addClass('collapsed');
			}

			return false;
		}

		if($('div,blockquote', _self).length) {
			$(this)
				.addClass('collapsed')
				.css('cursor', 'help')
				.bind('click', showDetails)
				.find('div,blockquote')
				.hide()
				;
				
			$('a', this)
				.bind('click', function() {
					window.open($(this).attr('href'));
					return false;
				});
		}
	});
});

