function coolbeans(){
	$("img.coffee-mug").animate({top:"-20px"}, 1800, "easeOutBounce");
	$("img.coffee-reflection").animate({top:"492px"}, 1800, "easeOutBounce");
}

function coolbeansNoAnimation(){
	$("img.coffee-mug").css({top:"-20px"});
	$("img.coffee-reflection").css({top:"492px"});
}
