$(function(){
	var speed = "fast";
	$(function(speed){
		$(".instance_r li a").hover(function () {
			var myID = $(this).attr("href");
			$(myID).not(':animated').fadeIn(speed);
		},function () {
			var myID = $(this).attr("href");
			$(myID).fadeOut(speed);
		});
		$(".reason_r li a").hover(function () {
			var myID = $(this).attr("href");
			$(myID).not(':animated').fadeIn(speed);
		},function () {
			var myID = $(this).attr("href");
			$(myID).fadeOut(speed);
		});
	});
	$(".instance_r li a").click(function () {
		return false;
	});
	$(".reason_r li a").click(function () {
		return false;
	});
});

$(function(){
	var speed = "fast";
	$(function(speed){
		$("#btn01").hover(function () {
			$("#swap01:not(:animated)").fadeIn(speed);
		},function () {
			$("#swap01").fadeOut(speed);
		});
		$("#btn02").hover(function () {
			$("#swap02:not(:animated)").fadeIn(speed);
		},function () {
			$("#swap02").fadeOut(speed);
		});
		$("#btn03").hover(function () {
			$("#swap03:not(:animated)").fadeIn(speed);
		},function () {
			$("#swap03").fadeOut(speed);
		});
	});
});

