$(document).ready(function(){

	var speed = 350;

	$('body.home #header div').hover(function(){
		$(this).siblings(":not(h1)").animate({opacity: ".5"}, {queue: false, duration: speed});
		$('#featured_news, #secondary_data, #tertiary_data').animate({opacity: ".5"}, {queue: false, duration: speed});
	}, function(){
		$(this).parent().children().animate({opacity: "1"}, {queue: false, duration: speed});
		$('#featured_news, #secondary_data, #tertiary_data').animate({opacity: "1"}, {queue: false, duration: speed});
	});

	$('#content #featured_news li').hover(function(){
		$(this).siblings().animate({opacity: ".5"}, {queue: false, duration: speed});
		$('#header div, #secondary_data, #tertiary_data').animate({opacity: ".5"}, {queue: false, duration: speed});
	}, function(){
		$(this).parent().children().animate({opacity: "1"}, {queue: false, duration: speed});
		$('#header div, #secondary_data, #tertiary_data').animate({opacity: "1"}, {queue: false, duration: speed});
	});

})
