$('html').addClass('js'); // fixes the flash of unstyled content in Opera

$(document).ready(function(){ 
	
	$("#content-wrapper .repeating-block:last").addClass("last-repeating-block");
	
	$("#t14-search-faq-legal .column2 #faqs h3:first").addClass("active");
	
	$("#t14-search-faq-legal .column2 #faqs .faq-block").hide();
	$("#t14-search-faq-legal .column2 #faqs .faq-block:first").show();

	$("#t14-search-faq-legal .column2 #faqs h3").click(function(){
		$(this).next(".faq-block").slideToggle("slow")
		.siblings(".faq-block:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(".column2 h3").removeClass("active");
	});
	
	$("table tr:nth-child(odd)").addClass("odd");
  	$("table tr:nth-child(even)").addClass("even");
	$("table").addClass("striped");
	$("table tr th:last-child").addClass("last-table");
	$("table tr td:last-child").addClass("last-table");
	
	$('#t1-homepage .museums-block .column2 h2 a')
  .html('Museum of <br />Wellington City &amp; Sea');
	
});
	 
   
	 


