$(document).ready(function(){
	
	$("#contact_data").css("opacity", 0.93);
	
	$("h2").css("opacity", 0.73);
	$("div.sub").css("opacity", 0.93);
	$("div.sub").hide();
	
	$("h2").hover(
		function () {
			if($(this).attr("id")!="active") {
				$("."+$(this).attr("class")+" img").css("display", "inline");
				$(this).animate({ 
					opacity: 0.9,
				}, 200 );
			}
		}, 
		function () {
			$("."+$(this).attr("class")+" img").css("display", "none");
			if($(this).attr("id")!="active") {
				$(this).animate({ 
					opacity: 0.73,
				}, 200 );
			}
		}
	);
	
	$("h2").click(function () {
		if($(this).attr("id")!="active") {
			$("h2#active").attr("id", "");
			$("h2").css("opacity", 0.73);
			
			$("."+$(this).attr("class")+" img").fadeOut(300);
			
			$("div.sub").slideUp();
			$("#"+$(this).attr("class")).slideDown();
			$(this).attr("id", "active");
			$(this).css("opacity", 0.9);
		}
	});
	
});
