/*
-----::: ABCnet.nl © 2011 :::-----
DATE: 10/05/2011
EDITED: 10/05/2011
DESCRIPTION: This is the JavaScript required to showdivs Requires jQuery library 
*/
$(document).ready(function() {
						   // 1st menu swap
						   $('#mn01').hover(
											function () {
												$('.autronmenupic01-01').hide();
												$('.autronmenupic01-02').show();
												$('.txt01').fadeIn('fast');
												}, 
												function () {
													$('.txt01').fadeOut('fast');
													$('.autronmenupic01-01').fadeIn('slow');
													$('.autronmenupic01-02').hide();
													});
						   // 2st menu swap
						   $('#mn02').hover(
											function () {
												$('.autronmenupic02-01').hide();
												$('.autronmenupic02-02').show();
												$('.txt02').fadeIn('fast');
												}, 
												function () {
													$('.txt02').fadeOut('fast');
													$('.autronmenupic02-01').fadeIn('slow');
													$('.autronmenupic02-02').hide();
													});
						   // 3st menu swap
						   $('#mn03').hover(
											function () {
												$('.autronmenupic03-01').hide();
												$('.autronmenupic03-02').show();
												$('.txt03').fadeIn('fast');
												}, 
												function () {
													$('.txt03').fadeOut('fast');
													$('.autronmenupic03-01').fadeIn('slow');
													$('.autronmenupic03-02').hide();
													});
						   // 4st menu swap
						   $('#mn04').hover(
											function () {
												$('.autronmenupic04-01').hide();
												$('.autronmenupic04-02').show();
												$('.txt04').fadeIn('fast');
												}, 
												function () {
													$('.txt04').fadeOut('fast');
													$('.autronmenupic04-01').fadeIn('slow');
													$('.autronmenupic04-02').hide();
													});
						   // 5st menu swap
						   $('#mn05').hover(
											function () {
												$('.autronmenupic05-01').hide();
												$('.autronmenupic05-02').show();
												$('.txt05').fadeIn('fast');
												}, 
												function () {
													$('.txt05').fadeOut('fast');
													$('.autronmenupic05-01').fadeIn('slow');
													$('.autronmenupic05-02').hide();
													});
});
