// JavaScript Document
$(document).ready(function(){
	$('.sub').css('display','none');
	$('.MenuHorizontal a').hover(
		function(){
			$('.sub').stop(true,true).fadeOut(150);
		},function(){}
	);	
	$('.sub').hover(
		function(){},
		function(){
			$(this).stop(true,true).fadeOut(150);	
		}
	);
	$('#menu3 a').hover(
		function(){
			$('#sub1').stop(true,true).fadeIn();
		},function(){}
	);
	$('#menu1 a').hover(
		function(){
			$('#sub2').stop(true,true).fadeIn();
		},function(){}
	);
});