/**
 * this is for the desktop site only.
 */

var cf; 
function init() {
	cf = new ContentFlow('ContentFlow', {
		reflectionColor: "#FFFFFF", 
		maxItemHeight:450, 
		circularFlow: false, 
		scaleFactor:3,
		flowDragFriction:0,
		
		visibleItems:7, 
		endOpacity:0,
		startItem:"first"
	});
}
init();
jQuery(document).ready(function() {
	//init();
});
function flowleft() {
	cf.moveTo('pre');
}

function flowright() {
	cf.moveTo('next');
}
