function videoDialog() {
	
	var embeded_html  =  '<object width="853" height="510"><param name="movie" value="http://www.youtube.com/v/i-VDtrp03Xw?hl=de&fs=1&autoplay=1&hd=1"></param><embed src="http://www.youtube.com/v/i-VDtrp03Xw?hl=de&fs=1&autoplay=1&hd=1" type="application/x-shockwave-flash" width="853" height="510"></embed></object>';
	var dialogOptsVideo = {
               	title: 'Kurzzeit-eVB Intro',
                modal: true,
                autoOpen: true,
                height: 600,
                width: 900,
                draggable: false,
		resizable: false,
		show: 'fadeIn',
		hide: 'fadeOut',
                open: function() {
             $("#videodlg").html(embeded_html);
                },
                close: function() {
                        $("#videodlg").html('');
		}
	};
        $("#videodlg").dialog(dialogOptsVideo);

}


$(document).ready(function(){

	$('#videoLink').click(function() {
		videoDialog();
	});

	$('#videoLink').hover(function() {
		$(this).attr("src", "gfx/evb-video-0.gif");
	}, function() {
		$(this).attr("src", "gfx/evb-video-1.gif");
	});

});

