jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

$.preloadImages("http://www.goebel-hotels.com/layout/angebote_blau.gif", "http://www.goebel-hotels.com/layout/angebote_rot.gif", "http://www.goebel-hotels.com/layout/hotel_blau.gif", "http://www.goebel-hotels.com/layout/hotel_rot.gif", "http://www.goebel-hotels.com/layout/navigation_kurz_blau.gif", "http://www.goebel-hotels.com/layout/navigation_kurz_rot.gif", "http://www.goebel-hotels.com/layout/navigation_lang_blau.gif", "http://www.goebel-hotels.com/layout/navigation_lang_rot.gif", "http://www.goebel-hotels.com/layout/navigation_sehr_kurz_rot.gif", "http://www.goebel-hotels.com/layout/navigation_sehr_kurz_blau.gif");
$(
	function()
	{
		// do something when page is ready
		$("a.foo img").hover(
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/angebote_blau.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/angebote_rot.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/hotel_blau.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/hotel_rot.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/navigation_kurz_blau.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/navigation_kurz_rot.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/navigation_lang_blau.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/navigation_lang_rot.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/navigation_seht_kurz_rot.gif";
			}
			,
			function()
			{
				this.src = "http://www.goebel-hotels.com/layout/navigation_sehr_kurz_blau.gif";
			}
		)
	}
)