function videoDialog() {

	var dialogOptsVideo = {
               	title: 'Transit Plate Intro',
                modal: true,
                autoOpen: true,
                height: 600,
                width: 900,
                draggable: false,
		resizable: false,
		show: 'fadeIn',
		hide: 'fadeOut',
                open: function() {
			$("#videodlg").html('<iframe title="YouTube video player" width="853" height="510" src="http://www.youtube.com/embed/M8dlKmn5zf8?autoplay=1" frameborder="0" allowfullscreen></iframe>');
                },
                close: function() {
                        $("#videodlg").html('');
		}
	};
        $("#videodlg").dialog(dialogOptsVideo);

}


$(document).ready(function(){

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

	$('#videoLink').hover(function() {
		$(this).attr("src", "gfx/kkeu-video-hover.png");
	}, function() {
		$(this).attr("src", "gfx/kkeu-video.png");
	});

});

