$(function(){
	$("#menu").find("li:has(ul)").hover(function(){
			$(this).find("ul").removeClass("hide");
		},
		function(){
			$(this).find("ul").addClass("hide");
		});
	$(".work-image img").css("opacity", "0.4");
	$(".work-container").hover(function(){
			$(this).find(".work-image img").stop(true, true).animate({opacity: "1"}, "fast");
		},
		function(){
			$(this).find(".work-image img").stop(true, true).animate({opacity: "0.4"}, "fast");
		});
	$(".work-container").click(function(){
		window.location=$(this).find("a").attr("href");
	});
	$(".error img").hover(function(){
			$(this).prev(".errorbox").removeClass("hide");
		},
		function(){
			$(this).prev(".errorbox").addClass("hide");
		});
	$(".submit").hover(function(){
			$(this).addClass("highlight");
		},
		function(){
			$(this).removeClass("highlight");
		});
	$("a[rel=\"url_blank\"]").click(function(e){
		e.preventDefault();
		window.open($(this).attr("href"), "_blank");
	});
});
