$(document).ready(function() {

	// Accordion
	$("div.expanded").show();
	$("div.expansion").hide();
	$("h2 a").click(function(){
		//$("div.expansion:visible").slideToggle("slow");
		$(this).parent().next().slideToggle();
		return false;
	});
	$("h3 a").click(function(){
		//$("div.expansion:visible").slideToggle("slow");
		$(this).parent().next().slideToggle();
		return false;
	});

	// Fitt's Low Links
	$('.clickable').fitted();
	
	// Lightbox
    $(function() {
    $('#lightbox_gallery a').lightBox();
    $('a.lightbox').lightBox();
    });	
});

 function CentreWindow(mypage, myname, w, h, scroll) {
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;
  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,resizable=no,status=no'
  win = window.open(mypage, myname, winprops)
  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}