$(document).ready(function() {

	$('#banner').slideshow({
		timeout: 4000,
		fadetime: 1000,
		type: 'sequence'
	});

    $('#navi_lang a').click(function () {
        $('#navi_lang_content').slideToggle(300);
    });
	
    $('a.video').click(function () {
        var html = '';
        var url = escape($(this).attr('href'));
        html += '<div id="video" style="position: relative; width: 640px; height: 360px;">';
        html += '   <object id="video" width="100%" height="100%" type="application/x-shockwave-flash" data="fileadmin/templates/swf/player.swf" bgcolor="#000000" name="video" tabindex="0">';
        html += '       <param name="allowfullscreen" value="true">';
        html += '       <param name="allowscriptaccess" value="always">';
        html += '       <param name="seamlesstabbing" value="true">';
        html += '       <param name="wmode" value="opaque">';
        html += '       <param name="flashvars" value="netstreambasepath=http%3A%2F%2Fwww.emnos.com%2F&id=video&autostart=true&file=' + url + '&controlbar.position=over">';
        html += '   </object>';
        html += '</div>';
		$.modal(html,{
            opacity: 50,
            overlayClose: true,
            overlayCss: {backgroundColor:"#000"}
        });
        return false;
    });

});

