$(document).ready(function(){
	$('#about_us').mouseover(function() {
		$('div.header_bot').children().each(function(){
			if(this.className!="about_submenu"){
				$("div."+this.className).fadeOut('slow');
			}
		});
		$('div.about_submenu').fadeIn('slow');
	});
	$('#services_submenu').mouseover(function() {
		$('div.header_bot').children().each(function(){
			if(this.className!="services_submenu"){
				$("div."+this.className).fadeOut('slow');
			}
		});
		$('div.services_submenu').fadeIn('slow');
	});
	$('#products_submenu').mouseover(function() {
		$('div.header_bot').children().each(function(){
			if(this.className!="products_submenu"){
				$("div."+this.className).fadeOut('slow');
			}
		});
		$('div.products_submenu').fadeIn('slow');
	});
	$('#solutions_submenu').mouseover(function() {
		$('div.header_bot').children().each(function(){
			if(this.className!="solutions_submenu"){
				$("div."+this.className).fadeOut('slow');
			}
		});
		$('div.solutions_submenu').fadeIn('slow');
	});
	$('div.header').mouseover(function() {
		$('div.header_bot').children().each(function(){
			$("div."+this.className).fadeOut('slow');
		});
	});
	$('div.content_holder').mouseover(function() {
		$('div.header_bot').children().each(function(){
			$("div."+this.className).fadeOut('slow');
		});
	});
	$('#home').mouseover(function() {
		$('div.header_bot').children().each(function(){
			$("div."+this.className).fadeOut('slow');
		});
	});
});
