jQuery(document).ready(function(){ 
    jQuery("ul.sf-menu").supersubs( { minWidth: 10, maxWidth: 35 } ).superfish({ 
        //animation: {height:'show'},
        delay:     200
    })
});

function show_mp3_player( path, id )
{
    jQuery( '#' + id ).html( '<object type="application/x-shockwave-flash" data="/images/layout/player_mp3_maxi.swf" width="250" height="30">'
    + '<param name="movie" value="/images/layout/player_mp3_maxi.swf" />'
    + '<param name="bgcolor" value="#ffffff" />'
    + '<param name="FlashVars" value="mp3=' + path + '&amp;width=250&amp;height=30&amp;showstop=1&amp;showvolume=1&amp;volumewidth=50&amp;autoplay=1" />'
+ '</object>' );
}

function show_video_player( path, id )
{
    jQuery( '#' + id ).html( '<object type="application/x-shockwave-flash" data="/video-player/player.swf" allowFullScreen="true" width="400" height="315">'
    + '<param name="movie" value="/video-player/player.swf" />'
    + '<param name="bgcolor" value="#ffffff" />'
    + '<param name="allowFullScreen" value="true" />'
    + '<param name="FlashVars" value="file=' + path + '&amp;width=400&amp;height=315&amp;autostart=1" />'
+ '</object>' );
}
