$(function() {

	$('#clientCycle').cycle({
		fx: 'fade',
		pause:1,
		timeout:6000,
		speed:1125
	});
	
	$("#imageMap area").hover(
		function(){
			$("#mapChange").attr("src",$(this).data("image"));
		},
		function(){
			$("#mapChange").attr("src",$("#mapChange").data("src"));
		}
	);
	
	$("#showFormA").click(function(){
		$("#showForm").toggle();
		return false;
	});
	
});
