Cufon.replace('.navi', {hover: true});
Cufon.replace('h3');
	
Shadowbox.init({
    players:["img","iframe"]
});

$(document).ready(function(){

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

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("a.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false;
	});
	$("div.triggerc").click(function(){
				$(this).parent(".toggle_container").slideToggle("slow").prev("a").removeClass("active");
				return false;
			});
			  $('.slideshow').cycle({
					fx: 'scrollRight', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
					timeout:4000,
					speed:  1000

				});
});
