$(document).ready(function() {

	$(function() {
	   $('#slideshow').cycle();
	}); 


	$(function() {
		$("a[rel='gallery']").colorbox();
	});




	$('.answer').hide();

	$('a.question')
		.click(function(){
		$(this).toggleClass('open').next('.answer').slideToggle('fast'); 
		return false;
	});


	$('.toggleInfo').hide();

	$('a.toggleName')
		.click(function(){
		$(this).toggleClass('open').next('.toggleInfo').slideToggle('fast'); 
		return false;
	});

	
});    

