// JavaScript Document
$(document).ready(function(){
						$('.expand li').click(function() {
							$(this).toggleClass('selected');
							$(this).find(".expandcontent").toggle('fast');
							
							$(this).nextAll().removeClass('selected');
							$(this).nextAll().find('.expandcontent').hide('fast');
							
							$(this).prevAll().removeClass('selected');
							$(this).prevAll().find('.expandcontent').hide('fast');
						});
					});
