﻿$(document).ready(function() {
        $('body').addClass('js');
		$('ul#first-navi > li:not(:last)').children(':not(ul)').append('<span class="right"></span>');
		$('ul#first-navi > li:not(:first)').children(':not(ul)').append('<span class="left"></span>');

		// Browserweiche IE6
		var browser = navigator.appVersion.split(";");
		if ( browser[1] == " MSIE 6.0" ) {
			$("ul#first-navi > li")
				.hover(function() {
					$(this).addClass('hover');
				}, function() {
					$(this).removeClass('hover');
				});
		}
		$("ul#first-navi > li")
		.find('a').focus(function() {
			$(this).parents('li').addClass('hover');
		})
		.blur(function() {
			$(this).parents('li').removeClass('hover');
		});
        $('ul.first-navi').superfish({
            delay: 500,
            animation: { opacity: 'show', height: 'show'},
            autoArrows: false,
            dropShadows: false
        });
    });