$(document).ready(function() {

	// homepage cycling tabs
	$('.h_slide').tabs({ fx : { opacity: "toggle", duration: 200 }}).tabs("rotate", 5000, true);
	
	// other articles tabs
	$('.articles_wrap').tabs();

	// all galleries
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({
										animationSpeed:'slow'
										,theme:'light_square'
										,slideshow:5000
										,opacity: 0.5
										,autoplay_slideshow: false
										,overlay_gallery: false
										});
	
});

$(function() {
	
	// main menu ie6 hover
	$('.m_menu > li').hover(function(){
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	// add alternative rows colours to all tables && add first col slass to officers table
	$('table tr:odd').addClass('alter');
	$('table.officers td:first').addClass('first');
	
});

