$(document).ready(function(){
	$('#tab1').mouseover(function() {
		$(".cube2").addClass("hover");
	});	
	$('#tab1').mouseout(function() {
		$(".cube2").removeClass("hover");
	});	

	$('#tab4').mouseover(function() {
		$(".cube4").addClass("hover");
	});	
	$('#tab4').mouseout(function() {
		$(".cube4").removeClass("hover");
	});

	$('#tab2').mouseover(function() {
		$(".cube5").addClass("hover");
	});	
	$('#tab2').mouseout(function() {
		$(".cube5").removeClass("hover");
	});

	$('#tab3').mouseover(function() {
		$(".cube6").addClass("hover");
	});	
	$('#tab3').mouseout(function() {
		$(".cube6").removeClass("hover");
	});
	
	
	$('#tab5').mouseover(function() {
		$(".cube7").addClass("hover");
	});	
	$('#tab5').mouseout(function() {
		$(".cube7").removeClass("hover");
	});
	
	
	$('#tab6').mouseover(function() {
		$(".cube9").addClass("hover");
	});	
	$('#tab6').mouseout(function() {
		$(".cube9").removeClass("hover");
	});
	
});  
