
var cf = new ContentFlow('contentFlow', {reflectionColor: "#ccc4b3"});

$(document).ready(function() {
	
	$('body').removeClass('nojs');
	
	
	if ($().lightbox) {
		$('a[class^="lightbox"]').lightbox();	
	}
	
	// Accordion
	if (jQuery().accordion) {
		$('#accordion').accordion({ header: 'h3', autoHeight: false, collapsible: true, navigation: true, active: false });	
	}


	// load slideshow
	if (jQuery().cycle) {
		$('#slideshow').cycle({
			fx: 'custom',
			cssBefore: {display:'block', top:-525},
			animIn: {top:0},
			animOut: {top:-725},
			timeout:4000,
			easeIn:'bounceout',
			speedOut:100,
			// autostop:3,
			cleartype:true,
			cleartypeNoBg:true
		});
	}

});

