/*
$.setupJMPopups({
	screenLockerBackground: "#003366",
	screenLockerOpacity: "0.7"
});
*/

$(document).ready(function() 
{  
	var d = TodaysDate();
	$(".roundedorange").backgroundCanvas(); 
	$(".roundedgreen").backgroundCanvas(); 
	$(".roundedblue").backgroundCanvas(); 
	$(".TabShapeContainer").backgroundCanvas(); 
	$("#todaysdate").html(d);

	$('TABLE.loginpanel').hide();
	$('td.topmenulogin a').click(function(){
		$('TABLE.loginpanel').fadeIn("slow");
	});
	$('a[rel*=facebox]').facebox({
		loading_image : 'loading.gif',
		close_image   : 'closelabel.gif'
	}); 
});

function TodaysDate(){
	// Monday 23rd March 2009
	var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	var now = new Date();
	return(dayNames[now.getDay()] + " " + now.getDate() + " " + monthNames[now.getMonth()] + " " + now.getFullYear());
}

/*
function openPopup(){
	// http://code.google.com/p/jmpopups/wiki/API
	$.openPopupLayer({
		name: "mySecondPopup",
		width: 300,
		url: "story.php",
		success: function(){
			$("#popupstory").backgroundCanvas();
		}
	});
}
*/
