var startTop = null;
var index = 0;			
//	TODO	The offset is the height of the *.swf - it should get this from the object
//var yOffset = -420;
var yOffset = -160;
var xOffset = -200;
/**
 *	Called from the flash and casues breeze to animate 
 *	arround the screen.
 *
 * 	@param	x		The x position to move breeze to	
 * 	@param	y		The y position to move breeze to
 */
function updateRuby(x,y){
	if(startTop==null){
		var pos = $("#ruby").position();
		startTop = pos.top;
	}
	$("#ruby").css({left:x+xOffset,top:startTop+y+yOffset});
	index += 1;
}
/**
 * 
 */
function closeSpecialFriend(){
	$("#ruby").hide();
}

