$(function(){
	
	var overlay = $('#overlay');
	var videoContainer = $('#video-container');
	
	$('#trailer-button').bind('click', function(e) {
		showTrailer();
	});
	
	overlay.bind('click', function(e) {
		hideTrailer();
	});
	
	
	function showTrailer() {
		
		if ($.browser.msie) {
			overlay.css({'display':'block', height: $('body').height()});
			videoContainer.append('<iframe src="http://player.vimeo.com/video/35121236?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=1" width="660" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>');
		} else {
			overlay.css({'display':'block', height: $('html').height(), opacity: 0});
			overlay.animate({opacity: 1}, 300);
			setTimeout(function() {
				videoContainer.append('<iframe src="http://player.vimeo.com/video/35121236?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=1" width="660" height="430" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>');
			}, 300);
		}
		
	}
	
	function hideTrailer() {
		overlay.css({'display':'none'});
		videoContainer.empty();
	}
	
	
});
