$(document).ready(function(){
	jQuery.easing.def = 'easeInOutExpo';
	
	var video = $("#video-player").get(0);

	$(window).resize(function() {
		var w = $(window).width();
		var h = $(".content").outerHeight();
		
		$("#wrapper").height(h);
		
		$("#content-wrapper").height(h);

		$("#message-popup-wrapper").height(h);
		
		$("#background").height(h);
		
		var img_w = $("#background img").width();
		var img_h = $("#background img").height();
		
		var ratio = img_w/img_h;
		
		if (img_w > img_h && ((w/ratio) >= h)) {
			$("#background img").width(w);
			$("#background img").height(w/ratio);
		} else {
			$("#background img").width(h * ratio);
			$("#background img").height(h);
		}
		
		$(".navigation-menu").height($(".contents").outerHeight() - 20);
	});
	
	setTimeout(function() {
		$(window).resize();
		fakeClick(function() {
			if (video) {
				video.play();
			}
		});
	}, 500);
	
	setTimeout(function() {
		$(window).resize();
	}, 1000);
	
	setTimeout(function() {
		$(window).resize();
	}, 2000);
	
	var v = document.createElement("video"); // Are we dealing with a browser that supports <video>? 
	if ( !v.play ) { // If no, use Flash.
		var params = {
			allowfullscreen: "true",
			allowscriptaccess: "always"
		};
		var flashvars = {
			file: base_url+"video/david_montelongo_lifestyle_high.mp4",
			image: base_url+"img/david_montelongo.jpg"
		};
		var attributes = {
			id: "flash-video-player"
		};
		swfobject.embedSWF(base_url+"flvplayer.swf", "video-holder", "394", "218", "9.0.0", base_url+"expressInstall.swf", flashvars, params, attributes);
	}
	
	if ( !v.play ) { // If no, use Flash.
		var params = {
			allowfullscreen: "true",
			allowscriptaccess: "always"
		};
		var flashvars = {
			file: base_url+"video/david_montelongo_seeds_high.mp4",
			image: base_url+"img/david_montelongo.jpg"
		};
		var attributes = {
			id: "flash-video-player"
		};
		swfobject.embedSWF(base_url+"flvplayer.swf", "video-holder2", "394", "218", "9.0.0", base_url+"expressInstall.swf", flashvars, params, attributes);
	}
});

