var startTop = null;
var index = 0;			
/**
 *	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-50,top:startTop+y});
	index += 1;
}
/**
 * 
 */
function closeRuby(){
	$("#ruby").hide();
}
