function show_alert(text)
{
	var top = Math.round($(window).height() / 2);
	var left = Math.round($(window).width() / 2);
	
	$("div#js-message").remove();
	
	$('body').append("<div id='js-message' style='background-color: silver; display: none; position: fixed; z-index: 250; opacity: 0.8;  min-width: 300px;' id='popap1'>"+text+"</div>");
	
	top -= Math.round($("div#js-message").height() / 2);
	left -= Math.round($("div#js-message").width() / 2);
	
	$("div#js-message").css({'top': top, 'left': left}).fadeIn(300, function ()
		{
			$("div#js-message").fadeOut(3000, function () { $("div#js-message").remove() } );
		}
	);
}

function bind_hover_hint() 
{ 
	$("*[hint]").tipTip( { defaultPosition: "top", edgeOffset:10, maxWidth: "200px", attribute: "hint"} );
}

$(document).ready(function()
{	
	$('a.show-popup').fancybox({
		'width'			: 700,
		'height'		: 460,
		'autoScale' 	: false,
		'autoDimensions' 	: false,
		'titleShow' 	: false,
		'opacity'		: true,
		'overlayShow'	: true,
		'scrolling'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'none'
	}); 
	
	$('a.show-image').fancybox({
		'titleShow' 	: false,
		'opacity'		: true,
		'overlayShow'	: true,
		'scrolling'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'none'
	}); 
	
	bind_hover_hint();
});
