jQuery(document).ready(function() {

	$("#window-holder").dialog({ 
            height: "550px",
            width: "838px",
			autoOpen:false,
			modal: true,
            draggable: false,
            resizable: false,
            overlay: {
                    opacity: 0.8,
                    background: "black"
                }
            });
	$(".credits-link").click(function(){
		$("#window-holder").empty();
		$("#window-holder").load($(this).attr("href"));
		$("#window-holder").dialog("open"); 
		return false;
	});

	
	
});