/* Fancybox */
$(document).ready(function() {
			$("a#single_image").fancybox();
			$("a[rel=lightbox]").fancybox({
				'overlayShow'		: true,
				'overlayOpacity'	: '0.8',
				'overlayColor'		: '#000000'
			});
			$("a[rel=rs_lightbox]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'overlayShow'		: true,
				'overlayOpacity'	: '0.8',
				'overlayColor'		: '#000000'
			});
		});	
		
/* Slider */
$(document).ready(
				function(){
					$('ul#theaserimg_start').innerfade({
						animationtype: 'fade',
						speed: 1000,
						timeout: 5000,
						type: 'sequence'
					});
			});
			
/* Toggle */
$(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.opentoggle").click(function(){
			$(this).toggleClass("active").next().slideToggle("slow");
		});
	
	});
