$(function() {
	
	// HOME PAGE
	
	$('.hoverPanels').hide();
	
	$('#boxesTopLeft, #aboutLink').hover(function(){
		$('#hoverPanelsTopLeft').show();
		$('#innerPanelsTopLeft').css({backgroundColor: "#2a2a2a"}, 1);		
	}, function(){
		$('#hoverPanelsTopLeft').hide();
		$('#innerPanelsTopLeft').css({backgroundColor: "#000"}, 1);		
	});
	
	$('#boxesBottomLeft, #portfolioLink').hover(function(){
		$('#hoverPanelsBottomLeft').show();
		$('#innerPanelsBottomLeft').css({backgroundColor: "#2a2a2a"}, 1);		
	}, function(){
		$('#hoverPanelsBottomLeft').hide();
		$('#innerPanelsBottomLeft').css({backgroundColor: "#000"}, 1);		
	});
	
	$('#boxesBottomRight, #blogLink').hover(function(){
		$('#hoverPanelsBottomRight').show();
		$('#innerPanelsBottomRight').css({backgroundColor: "#2a2a2a"}, 1);		
	}, function(){
		$('#hoverPanelsBottomRight').hide();
		$('#innerPanelsBottomRight').css({backgroundColor: "#000"}, 1);		
	});
	
	// PORTFOLIO PAGE
	
	$('#portfolioMain a img, .postContent a img').hover(function(){
		$(this).css({opacity: "0.5"}, 1);		
	}, function(){
		$(this).css({opacity: "1"}, 1);		
	});

});

