// Fullscreen

var FullscreenrOptions = {  width: 1280, height: 1250, bgID: '#bgimg' };
jQuery.fn.fullscreenr(FullscreenrOptions);

// Register Dialog Box

function alertDialog (text, small)
{
	$("#dialog-alert").removeClass("class");

	if (small)
		$("#dialog-alert").addClass ("small");

	$("#dialog-alert").show();
	$("#dialog-alert h2 span").html(text);
}

