$(document).ready(function() {
	$(".project_image").hover(function() {
		if(!$(this).is(":first-child")) {
			$(this).siblings(".project_image:first-child").css({"z-index":"2"}).find("img").css({"visibility":"hidden"});
		}
	}, function() {
		if(!$(this).is(":first-child")) {
			$(this).siblings(".project_image:first-child").css({"z-index":"1"}).find("img").css({"visibility":"visible"});
		}
	});
	
	$(".inactive_link").click(function() {
		return false;
	});
	
	$("#work").hover(function() {
		$("#work_bubble").show().animate({ "opacity":"1", "top":"-65px" }, 200);
	}, function() {
		$("#work_bubble").animate({ "opacity":"0", "top":"-45px" }, 200, function() { $(this).hide(); });
	});
	
	$("#about").hover(function() {
		$("#about_bubble").show().animate({ "opacity":"1", "top":"-50px" }, 200);
	}, function() {
		$("#about_bubble").animate({ "opacity":"0", "top":"-30px" }, 200, function() { $(this).hide(); });
	});
});
