


/* ---------- Image Preload Function ---------- */

jQuery.preloadImages = function()
{
	for (var i = 0; i < arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}



/* ---------- Open Browser Window ---------- */

jQuery.openBrWindow = function(theURL, winName, features)
{
	window.open(theURL, winName, features);
}



/* ---------- Portal ---------- */

$(document).ready(
	function()
	{
		
		
		// Portal Panel
		jQuery("a.popup").click(
			function(e)
			{
				
				e.preventDefault();
				jQuery.openBrWindow(this.href, 'pops', 'scrollbars=yes,width=500,height=500');
				
			}
		);
		
		
		
	}
);

