$(function() {
	var $current	= false;

	$(".blurhover").hover(
		function() {
			$current	= this.id;
			$(".blurhover").each(function() {
				$(this).css({
					opacity: "0.5"
				});
			});
			
			$("#" + $current).css({
				opacity: "1"
			});
		},
		function() {
			$(".blurhover").each(function() {
				$(this).css({
					opacity: "1"
				});
			});
		}
	);	
});