/* Javascript Document for Handle Creativ Art - Werbeagentur */
/*
	created by: Klaus Hoermann <klaus@3b-solutions.net>
	created for: Handle Creativ Art - Werbeagentur
	Client: Klimaboutique
	Copyright: (C) 3B-Solutions Klaus Hoermann 2009
*/

$(document).ready(function()
{
	//------------------------------------------------------------------
	// HEADER IMAGE
	$("#headerimage").cycle({fx:"fade", speed:2500});
	
	//------------------------------------------------------------------
	// MENU
	$("ul.topnav li a").hover
	(
		// over
		function()
		{
			$(this)
				.parent()
				.find("ul.subnav")
				.stop()
				.slideDown("3000")
				.show("2500", function(){$(this).height("auto");});
			
			$(this)
				.parent()
				.hover
				(
				 	// over
					function() {},
					// out
					function()
					{
						$(this)
							.parent()
							.find("ul.subnav")
							.stop()
							.slideUp("2500")
					}
				)
		}
	)
	.hover
	(
	 	// over
		function() { $(this).addClass("subhover"); },
		// out
		function() { $(this).removeClass("subhover"); }
	 );
});
