// JavaScript Document

$(window).load
(
	function()
	{
		setTimeout('animateLogo()',2000);
//		if ($.browser.safari && navigator.appVersion.indexOf("Mac")!=-1) alert("Note: If you are viewing this on a Mac, please be advised that the portfolio page may be temporarily not working in Safari.");
	}
);

function animateLogo()
{
	$('.logoNoFlower')
	.animate
	(
		{width: "126px", height: "134px", top: "10px", marginLeft: "-63px"},
		1000,
		function()
		{
			$('.logoFlower').animate
			(
				{width: "126px", height: "134px", top: "10px", marginLeft: "-63px"},
				1000,
				function() //this step due to inferior picture quality after animation in Firefox
				{
					$('.logoNoFlower').hide();
					$('.logoFlower').hide();
					$('.smallLogoHome').css("visibility","visible");
				}
			)
		}
	);
}

