(function($) {

	$(document).ready(function() {
		if(Modernizr.video && Modernizr.video.ogg) {
			$('.viittomakieli').click(function() {
				var url = $(this).attr('href').match('url=(.+)$')[1];
//				$('#lightbox-container-image').hide();
				$(this).after($('<div><video src="'+url+'" autoplay="true" controls></video></div>')
					.css({width:720, height:576, position: "fixed", top: 10, "z-index":10001, left: 10}));
				$(this).after($('<div></div>')
					.css({"z-index":10000, "background-color": "black", opacity: 0.8, position: "fixed", top:0, left:0, right:0, bottom: 0})
					.click(function() {location.reload(true)}))
//				$('#jquery-overlay').click(function() { location.reload(true) });
				return false;
			});
		}
	});

})(jQuery);

