// JavaScript Document
          $(document).ready(function() {
            $('.go').click(function(){
			  if( $("#video").is(":hidden") ) {
			  	$( "#logo" ).slideDown("fast")
			  	$( "#video" ).slideDown("fast");
				}else {
			  	$( "#logo" ).slideUp("fast")
			  	$( "#video" ).slideUp("fast");
				}
			});
			$('#videotrigger').hover(function(){
			  	$( "#videotab" ).animate( { marginLeft: "-110px" }, { queue: false, duration: 500 });
				 }, function() {
			  	$( "#videotab" ).animate( { marginLeft: "-65px" }, { queue: false, duration: 500 });
							});
            		    });

