// JavaScript Document
$(document).ready(function() {
			   
	$('div.menubg').fadeOut(500);
			   
$('.m1').hover(function(){
	$('div.menubg1').stop(true,true).fadeIn(500);
}, function(){
	$('div.menubg1').stop(true,true).fadeOut(500);
});
$('.m2').hover(function(){
	$('div.menubg2').stop(true,true).fadeIn(500);
}, function(){
	$('div.menubg2').stop(true,true).fadeOut(500);
});
$('.m3').hover(function(){
	$('div.menubg3').stop(true,true).fadeIn(500);
}, function(){
	$('div.menubg3').stop(true,true).fadeOut(500);
});
$('.m4').hover(function(){
	$('div.menubg4').stop(true,true).fadeIn(500);
}, function(){
	$('div.menubg4').stop(true,true).fadeOut(500);
});
$('.m5').hover(function(){
	$('div.menubg5').stop(true,true).fadeIn(500);
}, function(){
	$('div.menubg5').stop(true,true).fadeOut(500);
});

						   });

