// JavaScript Document

function imageLoaded()
{
		$("#headerImage").css({marginLeft:"-1250px", visibility:'visible'});
		$("#headerImage").animate({marginLeft:"60px"},900).animate({width:'380px',marginLeft:"107px"},150).animate({width:'417px',marginLeft:"0px"},500);
}

$().ready(function()
{
	
	
	$(".buttonClass").hover(function(){$(this).css({color:"red",fontSize:"18px"}) },function(){$(this).css({color:"#A64639",fontSize:"18px"})});
});
