$(document).ready(function(){

	$("#myController").jFlow({
		slides: "#mySlides",
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#jFlowSlide", // must be id, use # sign
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
		width: "485px",
		height: "220px",
		duration: 950,
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext" // must be class, use . sign
	});
	
	$("#myController a").click(function() {
 		$("#myController a.active").removeClass("active");
 		$(this).addClass("active");
	});
	
	$("a.questions").fancybox({ 'zoomOpacity'			: true,
								  	'overlayShow'			: false,
									'zoomSpeedIn'			: 5,
									'zoomSpeedOut'			: 5,
									'frameHeight'			: 430,
								   'frameWidth'				: 450,
								   'hideOnContentClick': false 
	});
	$("a.faqs").fancybox({'frameHeight'			: 250,
								   'frameWidth'				: 350,
								   'padding'				: 10,
								   'zoomSpeedIn'			: 5,
								   'zoomSpeedOut'			: 5,
								   'overlayShow'			: true,
								   'hideOnContentClick': false 
	});
	
	//$("a.getaccess").fancybox({	   'frameHeight'			: 200,
	//							   'frameWidth'				: 350,
	//							   'padding'				: 10,
	//							   'zoomOpacity'			: true,
	//							   'overlayShow'			: true,
	//							   'zoomSpeedIn'			: 1,
	//							   'zoomSpeedOut'			: 1,
	//							   'hideOnContentClick': false 
	//});
	
});


