$(function () {
	$('.bubbleInfo').each(function () {

		var trigger = $('.trigger', this);
		var popup = $('.popup', this);
		
		var popupHeight = $(popup).height();
		var popupWidth = $(popup).width();

		var parentWidth = $(popup).parent().width();

		$(trigger).mouseover(function(e){
			$(popup).show();
			$(popup).css({
				top: "-" + ( popupHeight + 30 ) + "px",
				left: ( parentWidth - popupWidth ) + "px"
			});
		});
		$(trigger).mouseout(function(e){
			$(popup).hide();
		});
	});
});
