$(document).ready(function(){

    $('a.blank').click(function(){
        window.open(this.href);
        return false;
    });


	$('#btn-video').click(function(e){
		e.preventDefault();
		// $("#instructionvideo").appendTo("#video");
		so.write("video");
		$("#overlay-video").fadeIn();
	});
	
	$("#video-close").click(function(e){
		e.preventDefault();
		$("#overlay-video").fadeOut();
		$("#instructionvideo").remove();
	})	
		
});