﻿$(document).ready(function(){			

	$('#home_center_top').hover(function(){
	
		$(this).css({'background-color': '#FBCD3A', 'background-image': 'none'});
		//$('#home_center_top a').css('color', '#005187');
		$('#home_center_top_expanded').show();
	}, function(){
	
		$(this).css({'background-color': 'transparent', 'background-image': 'url(images/trans_bg.png)'});
		//$('#home_center_top a').css('color', '#FFF');
		$('#home_center_top_expanded').hide();
	
	});

	$('#home_center_middle').hover(function(){
	
		$(this).css({'background-color': '#FBCD3A', 'background-image': 'none'});
		//$('#home_center_middle a').css('color', '#005187');
		$('#home_center_middle_expanded').show();
	}, function(){
	
		$(this).css({'background-color': 'transparent', 'background-image': 'url(images/trans_bg.png)'});
		//$('#home_center_middle a').css('color', '#FFF');
		$('#home_center_middle_expanded').hide();
	
	});

	$('#home_center_bottom').hover(function(){
	
		$(this).css({'background-color': '#FBCD3A', 'background-image': 'none'});
		//$('#home_center_bottom a').css('color', '#005187');
		$('#home_center_bottom_expanded').show();
	}, function(){
	
		$(this).css({'background-color': 'transparent', 'background-image': 'url(images/trans_bg.png)'});
		//$('#home_center_bottom a').css('color', '#FFF');
		$('#home_center_bottom_expanded').hide();
	
	});

});

