// made by Michel Winata MMC-Agentur miw@mmc-agentur.at
$(document).ready(function(){
	$('#subnav_standort').hide();
	$('#main_nav li a').hover(
		function () {
			if($(this).children('span').text() == 'Standorte.')
			{
				$('#subnav_standort').show('slow');
			}
		},
		function () {
		
		}
	);
	// 2tes Hover damit #subnav_standort nicht gleich verschwindet !
	$('#subnav_wrapper').hover(
		function () {
			//leer
		},
		function () {
			$('#subnav_standort').hide('slow');
		}
	);
	
	$('#main_nav li a').click(function(){
		if($(this).text() == 'Standorte.')
		{
			return false;
		}
	});
});
