/* Author: 

*/
		function video()
		{
				$("#video").css("height", $(window).height()+"px");
				$("#video").css("width", $(window).width()+"px");
			    $("header").click(function(){
			 	$("#container").hide();
 			});

		}
		function video2()
		{
				//<![CDATA[
               // jQuery(document).ready(function($) {  
                	var w_height = $(window).height();
					w_height = w_height - 30; 
					var w_width = $(window).width();
					var $vimeo_video = $("#video");
					
                	$vimeo_video.width(w_width);
                	$vimeo_video.height(w_height);
                 
            //     });
				 //]]>
		}
 		$(document).ready(function() {
			video()
 		});





















