$(function() {
	$('img.popimg').CreateBubblePopup({
		position: 'top',
		align: 'center',
		width: 250,
		height: 200,
		innerHtml: '<img src="/jquery/jQueryBubblePopup/Examples/images/loading.gif" style="border:0px; vertical-align:middle; margin:0px; display:inline;" />',
		innerHtmlStyle: { color:'#FFFFFF', 'text-align':'center' },
		// tail: { hidden: true },
		themeName: 'blue',
		themePath: '/jquery/jQueryBubblePopup/Install/jquerybubblepopup-theme',
	});
	$('img.popimg').mouseover(function() {
		var i = $(this);
		if (i.GetBubblePopupLastDisplayDateTime() != null)
			return;
		var a = i.parent('a').attr('href');
		i.SetBubblePopupInnerHtml('<img src="'+a+'" width="200px" />');
	});
	$('a.popimg').click(function() {
		var i = $(this).children('img');
		$('#content').HideAllBubblePopups();
		var a = $(this).attr('href');
		i.ShowBubblePopup({
			width: 700,
			height: 600,

			innerHtml: '<img src="'+a+'" width="650px" />',
			position: 'left',
			align: 'center',
			distance: 0,
			themeName: 'blue',
			tail: { hidden: true },
			themePath: '/jquery/jQueryBubblePopup/Install/jquerybubblepopup-theme',
		}, false);
		return false;
	});
});

