$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".smb").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$(".slider h2#shead").click(function(){
		$(this).toggleClass("active").next().slideToggle(1000);
		return false; //Prevent the browser jump to the link anchor
	});
	
	$("a.lightbox").fancybox({
			'transitionIn'	:	'fade',
			'transitionOut'	:	'fade',
			'speedIn'		:	600, 
			'speedOut'		:	600,
			'hideOnContentClick'	: true,
			'overlayShow'	:	true
		});

});
