(function($) {
	$(document).ready( function() {						
	//$("a.fancylink").fancybox({'transitionIn':'elastic','transitionOut':'elastic','speedIn':600,'speedOut':200,'overlayShow':true});

	
// Toggle function
$(".toggle_container").hide();

$("p.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
});
			
		
			// CYCLE SLIDERS
		
			
			$('#cycle div:first').fadeIn(1000, function() {	 
			$('#cycle').cycle({
			
			speed:900,
			fx: 'fade',
			cleartype:  1,
			pause:1,
			timeout: 6000,
			prev: '#prev-slide',
			next: '#next-slide'
			})});
			
					
			if ($.browser.msie && $.browser.version < 9) {	
			// no cycle
			} else {	
			$('#cycle_poeles').cycle({speed:500,fx: 'fade',timeout: 4000});
			}	

	
	

	
	
	});
})(jQuery);
