// Diese Funktion wird benötigt, um die Dropdown Navigation auch IE6-kompatibel zu machen.
$.fn.dropdown = function() {
    $(this).hover(function(){
        $(this).addClass("hover");
        $('> .dir',this).addClass("open");
        $('ul:first',this).css('visibility', 'visible');
    },function(){
        $(this).removeClass("hover");
        $('.open',this).removeClass("open");
        $('ul:first',this).css('visibility', 'hidden');
    });
}


$(document).ready(function() {
    $("ul.dropdown li").dropdown();
    

flowplayer("a.videolink", "swf/flowplayer-3.2.7.swf", {
    canvas: {
        backgroundColor: 'transparent',
        backgroundGradient: 'none'
    },
    plugins: {
        controls: {
            backgroundColor: 'transparent',
            backgroundGradient: 'none',
            all: true,
            next: false,
            prev: false,
            fullscreen: true
        }
    }
});

    $('.webdesign').click(function() {
       window.location.href = 'http://www.stadtaerzte-marketing.de';
    });








});

$(document).ready(function(){
    $('a.videoplayer').css({'display':'block', 'width':'442px', 'height':'248px'}).flowplayer("swf/flowplayer-3.2.7.swf");
});
