
  $(function(){
    
    var win = $(window);
    var center = $("#center");
    var img = $("#center img");
    //img.css({border : "1px solid orange"});
    
    //center.css({border:"1px solid red"});
    
    var isApp;
    
    
    if (navigator.platform.indexOf("iPhone") != -1 ||
        navigator.platform.indexOf("iPad") != -1){
        isApp = true;
        //$(".georgia11").css("font-size", 100);
        //$("#ngtext").css("margin-top", -100);
    }
  
   
    function resize(){
 
      center.css({left : win.width() / 2 - center.width() / 2, 
                  top :  win.height() / 2 - center.height() / 2});
      
    }
    resize();
   
    win.resize(resize);
 
   
  });


$(document).ready(function() {

   
	
	$('#moretext').bind('click',
	
		function(){
			$(this).hide();
			$('#ngtext').show();
			$('#onoff').show();		
		}
	);



	$('#ngtext').bind('click',
	
		function(){
			$(this).hide();
			$('#moretext').show();	
			$('#onoff').hide();		
	
		}
	);
	
	
	$('#credittitle').bind('click',
	
		function(){
			$('#credits').toggle();
		}
		
	);
	
	
		
});
