$(document).ready(function(){

// HAUPTNAVIGATION
$("#ueberblick_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/ueberblick_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/ueberblick.png"});
	}
);

$("#tag1_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/tag1_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/tag1.png"});
	}
);

$("#tag2_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/tag2_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/tag2.png"});
	}
);

$("#tag3_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/tag3_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/tag3.png"});
	}
);

$("#tag4_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/tag4_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/tag4.png"});
	}
);

$("#tag5_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/tag5_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/tag5.png"});
	}
);

$("#referenten_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/referenten_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/referenten.png"});
	}
);

$("#anmeldung_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/anmeldung_ro.png"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/anmeldung.png"});
	}
);

// FOOTERNAVIGATION
$("#impressum_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/impressum_ro.gif"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/impressum.gif"});
	}
);

$("#agb_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/agb_ro.gif"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/agb.gif"});
	}
);

$("#datenschutz_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/datenschutz_ro.gif"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/datenschutz.gif"});
	}
);

$("#teilnahmebedingungen_button").hover(
	function () {
		$(this).attr({src: "/sportwoche/img/teilnahmebedingungen_ro.gif"});
	}, 
	function () {
		$(this).attr({src: "/sportwoche/img/teilnahmebedingungen.gif"});
	}
);

}); // DOKUMENT