
showBubble = function(div){
	$(".bubble").fadeOut("slow");
	
	if( $("#"+div).is(":hidden") ){
		$("#" + div).fadeIn("slow");
	}else{
		$("#" + div).fadeOut("slow");
	}
};

showBubbleCenter = function(div){
	var d = $("#"+ div).width() / 2;
	var h = $("#"+ div).height();
	var height = screen.height - h;
		height = height / 2;
	var width = screen.width;
		width =	width / 2 - d;
		
	
	$(".bubble").fadeOut("slow");
	
	if( $("#"+div).is(":hidden") ){
		$("#" + div).fadeIn("slow");
		$("#" + div).css("top", height + "px");
		$("#" + div).css("left", width + "px");
		$("#" + div).css("position", "fixed");
	}else{
		$("#" + div).fadeOut("slow");
	}
};
