$(document).ready(function(){
		
	$('dl').fademenu();
	$('#black').click(function(){hideVideo()});

});

function showVideo(){
  $('#black').fadeIn('slow',function(){});
  document.getElementById('containerVideo').innerHTML = '<iframe  width="786" height="470" src="http://www.youtube.com/embed/OeibXVlrlnI?fs=1&autoplay=1&autoloop=1" frameborder="0" allowfullscreen></iframe>';

}

function hideVideo(){
  $('#black').fadeOut('slow',function(){});
  $('#infoWindow').fadeOut('fast',function(){});
  document.getElementById('containerVideo').innerHTML = '';

}

