
$(document).ready(function (){
	$('#video-image').click(function() {
		$(this).fadeOut(1000);
		$(this).parent().append('<iframe title="YouTube video player" width="433" height="266" src="http://www.youtube.com/embed/2souehUDsB8?autoplay=1&rel=0" frameborder="0" allowfullscreen></iframe>');
		$('#video-object').fadeIn(1000);
	});
});

