$(document).ready(function(){
    $('h2').flash(
    {
        src: 'WEB-INFO/swf/swis721_ex_bt.swf',
        flashvars: {
            css: [
            '* { color: #000000; }',
            'a { color: #000000; text-decoration: none; }',
            'a:hover { text-decoration: underline; }'
            ].join(' ')
        }
    },
    {
        version: 7
    },
    function(htmlOptions) {
        htmlOptions.flashvars.txt = this.innerHTML;
        this.innerHTML = '<span>'+this.innerHTML+'</span>';
        var $alt = $(this.firstChild);
        htmlOptions.height = $alt.height();
        htmlOptions.width = $alt.width();
        $alt.addClass('alt');
        $(this)
        .addClass('flash-replaced')
        .prepend($.fn.flash.transform(htmlOptions));
    }
    );
});
$(document).ready(function(){
    $('#carrousel').flash(
    {
        src: 'WEB-INFO/swf/carrousel.swf',
        width: 824,
        height: 258
    },

    {
        version: 7
    }
    );
});
$(document).ready(function(){
    $(document).pngFix();
});
$(function() {
    $('#gallery a').lightBox();
});


/* pulldown menu */

var timeout         = 500;
var closetimer		= 0;
var ddmenuitem      = 0;

function jsddm_open()
{
    jsddm_canceltimer();
    jsddm_close();
    ddmenuitem = $(this).find('ul').eq(0).css('visibility', 'visible');
}

function jsddm_close()
{
    if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');
}

function jsddm_timer()
{
    closetimer = window.setTimeout(jsddm_close, timeout);
}

function jsddm_canceltimer()
{
    if(closetimer)

    {
        window.clearTimeout(closetimer);
        closetimer = null;
    }
    }

$(document).ready(function()
{
    $('#jsddm > li').bind('mouseover', jsddm_open);
    $('#jsddm > li').bind('mouseout',  jsddm_timer);
});

document.onclick = jsddm_close;
