// JavaScript Document

$(document).ready(function() {
	$("#panels div a").css({ opacity: 0.7 });
});

// PANELS

$(document).ready(function(){
	$("#panels div a").hover(
	function() {
		$(this).stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$(this).stop().animate({"opacity": "0.7"}, 400);
	});
});

