// JavaScript Document
swfobject.embedSWF("video.swf", "video", "800", "590", "9.0.115", "expressInstall.swf");
function interact() {
	$about = $('#about');
	$('#aboutLink').click(function() {
		if ($about.is(':visible')) {
			$about.slideUp();
			$(this).html('Website Design &rarr;');
		} else {
			$about.slideDown();
			$(this).html('Website Design &darr;');
		}
		this.blur();
		return false;
	});
	flashVersion = swfobject.getFlashPlayerVersion();
	if (!swfobject.hasFlashPlayerVersion("6.0.65")) {
		$('#projects').show();
	}
}
$(document).ready(function() {interact();});