$(document).ready(function() {
						   
						   
 function loadquestion(level) {
	
	var url = 'questions/'+'Q'+level+'.php';
	window.location.hash="LEVEL "+level;
$.post('fetchtitle.php',function(data){
document.title=data;
});
//	var url = 'questions/'+'Q9'+'.htm';
		$('#siteContent').html("");
		$('#siteContent').fadeIn('slow',getNewContent);
		
		
		function getNewContent() {
			$('#siteContent').load(url);
				$('#siteContent').ajaxComplete(hideLoader);

					}
					
		function showNewContent() {
			$('#siteContent').fadeIn('normal');
		}
		function hideLoader() {
		
			$('#loader').fadeOut('normal',showNewContent);

		}
}

			
						   
						   
						   
$('#start').click(function() {
						   $.post('isloggedin.php',function(data){
									 if(data=="1"){
												   
$.post("getlevel.php",function(data){
							   level=Number(data);
							   loadquestion(level);
							   
							   });
									 }
									 
									 else
									 $('#siteContent').append("You need to login first");
									 
									 
									 });
						   
						   });

						   
					   
						   
});
