jQuery(document).ready(function($) {
	// Menu
	$(function() {
		$('#menu').initMenu();
	});
	
	// Popup Credits
	$(function() {
		$("#credits").click(function(){
			centerPopup();
			loadPopup();
		});
					
		$("#close").click(function(){
			disablePopup();
		});

		$("#backgroundPopup").click(function(){
			disablePopup();
		});

		//Press Escape event!
		$(document).keypress(function(e){
			if(e.keyCode==27 && popupStatus==1){
				disablePopup();
			}
		});
	});
});
