/// <reference path="jQuery/jquery-1.4.3.min.js" />
/*
default.js:		Global site script.

Created by:		Kyle Underwood of Stoltenberg Consulting.
Created on:		11/13/2010.
Created to:		Run scripts for the default.aspx site.
*/

$(document).ready(function () {

	$("#divFlash").hide();

	if ($(window).height() < 800) {
		$("#linkCss").attr("href", "_css/defaults.css");
		$("#divFlash object").attr("height", "600").attr("movie", "_assets/Presentation.v0.0.6s.swf");
		$("#divFlash embed").attr("height", "600").attr("src", "_assets/Presentation.v0.0.6s.swf");
	}

	$("#divFlash").show();

});

