$(document).ready(function()
{
	// Create image viewer + loading
	$('<div id="simple-image-viewer"><h2>Terms of Service</h2><iframe src="terms-of-service-frame.php" width="720" height="450" align="center"></iframe></div>').appendTo('body').hide();
	$('<div id="simple-image-viewer-loading">Loading...</div>').appendTo('body').hide();

	// Close it on-click
	$('#simple-image-viewer').click(function()
	{
		$(this).fadeOut(300);
	});
});

function divpop()
{
	$('a.pop-up').click(function()
	{
		// Get information
		var imgTitle = ($(this).attr('title') == undefined) ? '' : '<h2>' +$(this).attr('title') +'</h2>';
		var imgSrc = ($(this).attr('href') == undefined) ? '' : '<p><img src="' +$(this).attr('href') +'" alt="" /></p>';
		var imgDesc = ($(this).find('img').attr('alt') == undefined) ? '' : '<p>' +$(this).find('img').attr('alt') +'</p>';

		// Preload image
		// var preload = new Image();
		// preload.src = $(this).attr('href');

			$('#simple-image-viewer').fadeIn(300).center();
	
		
		return false;
	});
}