$(document).ready(function(){
	$("#hidetext").click(function () {
		$("#vfp_link").hide();
		$("#text").hide("slow");
		$("#vt_pn_link").show();
		return false;
	});
	$("#showtext").click(function () {
		$("#vt_pn_link").hide();
		$("#text").show("slow");
		$("#vfp_link").show();
		return false;
	});
	$('#rotate').cycle({ 
		fx:     'scrollHorz', 
		prev:   '#prev', 
		next:   '#next', 
		timeout: 0 
	});
});
