$(document).ready(function() {
	// MENU
	$('a.home:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/menu/home_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/menu/home_1.gif');
	});
	$('li.ueber:not(a.cur)').hover(function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_2.gif');
		$('ul.submenu').css('opacity', '0.9');
		$('ul.submenu').slideDown('fast');
	}, function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_1.gif');
		$('ul.submenu').slideUp('fast');
		
	});
	// SUBMENU 
	$('li.ueber_unternehmen:not(li.cur)').hover(function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_unternehmen_2.gif');
	}, function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_unternehmen_1.gif');
	});
	$('li.ueber_produkt:not(li.cur)').hover(function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_produkt_2.gif');
	}, function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_produkt_1.gif');
	});
	$('li.ueber_herkunft:not(li.cur)').hover(function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_herkunft_2.gif');
	}, function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_herkunft_1.gif');
	});
	$('li.ueber_brauerei:not(li.cur)').hover(function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_brauerei_2.gif');
	}, function() {
		$(this).children('a').children('img').attr('src', 'img/de/menu/ueber_brauerei_1.gif');
	});
	
	$('a.presse:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/menu/presse_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/menu/presse_1.gif');
	});
	$('a.haendler:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/menu/haendler_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/menu/haendler_1.gif');
	});
	
	
	// META MENU
	$('a.mhome:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/meta/home_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/meta/home_1.gif');
	});
	$('a.mkontakt:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/meta/kontakt_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/meta/kontakt_1.gif');
	});
	$('a.mimpressum:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/meta/impressum_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/meta/impressum_1.gif');
	});
	$('a.mlinks:not(a.cur)').hover(function() {
		$(this).children('img').attr('src', 'img/de/meta/links_2.gif');
	}, function() {
		$(this).children('img').attr('src', 'img/de/meta/links_1.gif');
	});
});
