$(document).ready(function () {
							
$("#top ul li:first-child").addClass("remove");
$("#menu li:last-child").addClass("last");
$("#footer ul li:first-child").addClass("remove");
$("#news ul li:odd").addClass("remove");
$("#schedule-table tr th:first-child").addClass("border-left");
$("#schedule-table tr th:last-child").addClass("border-right");
$("#schedule-table tr:odd").addClass("odd");
$("#schedule-table tr td:last-child").addClass("link-place");
$("#schedule-table tr td:first-child").addClass("no-left");
$("#entry li:nth-child(1)").addClass("first-row");
$("#entry li:nth-child(2)").addClass("first-row");
$("#entry li:nth-child(2n)").addClass("make-border");

SSS_faq = {
	init : function() {
		$('div.faq .answer').slideToggle('fast');
		$('div.faq .question').click(function() { SSS_faq.toggle(this) });
	},
	
	toggle : function(elt) {
		$(elt).toggleClass('active');
		$(elt).siblings('.answer').slideToggle('fast');
	}
}

$(function() { 
	SSS_faq.init();
});


});


