$(document).ready(function() {

	$('a.products').mouseover(function() {
		$('#productsovr').show();
		$('#aboutovr').hide();
		$('#testimonialsovr').hide();
		return false;
		});

	$('#productsovr').mouseleave(function() {
		$('#productsovr').hide();
		});



	$('a.about').mouseover(function() {
		$('#aboutovr').show();
		$('#productsovr').hide();
		$('#testimonialsovr').hide();
		return false;
		});
		
		
	$('#aboutovr').mouseleave(function() {
		$('#aboutovr').hide();
		});



	$('a.stores').mouseover(function() {
		$('#productsovr').hide();
		$('#aboutovr').hide();
		$('#testimonialsovr').hide();
		return false;
		});
		
		

	$('a.testimonials').mouseover(function() {
		$('#productsovr').hide();
		$('#aboutovr').hide();
		$('#testimonialsovr').show();
		return false;
		});
		
		
	$('#testimonialsovr').mouseleave(function() {
		$('#testimonialsovr').hide();
		});		
		
		

	$('a.announcements').mouseover(function() {
		$('#productsovr').hide();
		$('#aboutovr').hide();
		$('#testimonialsovr').hide();
		return false;
		});
		
		
		
		
		

	$('a.homepage').mouseover(function() {
		$('#productsovr').hide();
		$('#aboutovr').hide();
		$('#testimonialsovr').hide();
		return false;
		});
		
});
