$(document).ready(function() {
    $('#menu').superfish({
        delay:       1000,
        speed:       'fast',
		autoArrows:  false,
        dropShadows: false
    });

    $.fn.media.defaults.flvPlayer = '/vid/jwFlvMediaPlayer/4.2.90/player.swf';

    //first we fix links to a readable format for the .flv player
    $('.flvVideo').each(function() {
		$(this).attr('href', $(this).attr('href').replace(/\?id=(\d+).*/, '$1.flv'));
		$(this).media({ width: 550,  height: 400});
    });
});