var contentReady;
var welcomeMessage='<span class="welcomeMessage">Welcome to <span class="justBold justDynamicColor">Angela Gheorghiu</span>\'s website<br><span class="justBold ">“the world’s most glamorous opera star”</span>';
var firstTime;
var interval;

function setQuotes(data){
	if(Modernizr.localstorage){
		$.post('scripts/getSession.php',{getSessionID:1},function (server){
			if(server.result==localStorage['sessionID']){
				firstTime=false;
				//get quotes
				$('#quotes').prepend(data.quote);
				$('#quotesAuthor').text("("+data.author+")");
				$('#quotes').fadeIn('slow', waitForQuotes(2000));				
				//get playList
				if(localStorage['playList']){
					playList=JSON.parse(localStorage['playList'])
				}else{
					$.post('scripts/getMusic.php',{getPlayList:1},function (result){
						playList=result;
						localStorage['playList']=JSON.stringify(result);
					},'json');
				}
			}else{
				if(!browserCap.hasVideo || !browserCap.hasAudio){
					html5Message();
				}else{
					continueLoading(server.result)
				}
			}
			
		},"json")
	}else{
		html5Message();
	}
}

function html5Message(){
		$('#quotes').html('<div style="width:500px;margin-left:auto;margin-right:auto;;">This site is built using new HTML5 technology. Although you can continue, for a spectacular experience please update your browser using the links below.<p id="continue" style="color:red;">continue</p><p><a class="fadingQ" href="http://www.mozilla.org/">Download Mozilla Firefox</a><br><a class="fadingQ" href="http://www.apple.com/safari/">Download Apple Safari</a><br><a class="fadingQ" href="http://www.google.com/chrome">Download Google Chrome</a><br><a class="fadingQ" href="http://www.opera.com/download/">Download Opera</a></p><p>Note Windows users:<a class="fadingQ" href="http://www.microsoft.com/download/en/default.aspx"><br>If you are not satisfied with the options above, please click here to find an appropriate version of Internet Explorer that works with your operating system.</a></div>').show();
		$('#continue').click(function(){
			continueLoading();
		})
		$('#continue').hover(
			function(){
				$(this).css('cursor','pointer');
				$(this).css('color','#9298aa');
			},
			function(){
				$(this).css('cursor','default');
				$(this).css('color','red');							
			}
		)
}

function continueLoading(serverResult){
		firstTime=true;
		//erase old navigation history
		localStorage.removeItem('openDiscographySection');
		localStorage.removeItem('openAppearancesSection');
		localStorage.removeItem('openPressSection');
		localStorage.removeItem('openGallerySection');
		localStorage.removeItem('browserCap');
		
		$('#quotes').prepend(welcomeMessage);
		$('#quotesAuthor').text('New York Sun');
		localStorage['sessionID']=serverResult;
		$('#quotes').fadeIn('slow', waitForQuotes(5000));
		//get playList
		if(localStorage['playList']){
			localStorage.removeItem('playList');
		}
		$.post('scripts/getMusic.php',{getPlayList:1},function (result){
			playList=result;
			localStorage['playList']=JSON.stringify(result);
		},'json');
}

function getBackground(){
	if(jQuery.browser.mobile){
		return;
	}
	if(currentPage=='index.html'){
		if(firstTime){
			$('#controls').hide();
			getVideoBackground();
		}else{
			getPictureBackground();
		}		
	}else{
		getPictureBackground();
	}
}

function waitForQuotes(time){
	interval=window.setInterval(showContent,time);
}

function showContent(){
	clearInterval(interval);
	$('#quotes').hide();
	$('#allContent').fadeIn('slow',getBackground);
	center();
	contentReady=true;
	contentReadySettings();
}

function contentReadySettings(){
	if(BubbleObject){
		BubbleObject.UnfreezeAllBubblePopups();
	}
}

$(document).ready(function(){
	contentReady=false;	
	if($('#quotes').length>0){		
		$('#allContent').hide();				
		$.post('scripts/getQuotes.php',setQuotes,'json');
		$('#quotes').hide();
	}

})





