$(document).ready(function() {
	$("html").addClass("js");
	$("a").hover(
		function() {
			$(this).animate({backgroundColor: "#b42d33"},{duration: 500});
		},
		function() {
			$(this).animate({backgroundColor: "#6f6f6f"},{duration: 250});
		}
	);
	
	$(".iavisarts-org-1").bind("mouseover", function() {
		$(".iavisarts-org-2").animate({backgroundColor: "#b42d33"},{duration: 500});
	});
	$(".iavisarts-org-1").bind("mouseout", function() {
		$(".iavisarts-org-2").animate({backgroundColor: "#6f6f6f"},{duration: 250});
	});

	$(".iavisarts-org-2").bind("mouseover", function() {
		$(".iavisarts-org-1").animate({backgroundColor: "#b42d33"},{duration: 500});
	});
	$(".iavisarts-org-2").bind("mouseout", function() {
		$(".iavisarts-org-1").animate({backgroundColor: "#6f6f6f"},{duration: 250});
	});
	
	$(".gdu-image").bind("click", function(e) {
		$(this).fadeOut(250);	
	});
	
	$(".gdu-cover").bind("click", function(e) {
		$(".gdu-image").fadeIn(1500);
		e.stopPropagation();
	});
	
	$(".p").fadeIn(1500);
});
