$(document).ready(function(){
	//References
	var sections = $("#menu li");
	var loading = $("#loading");
	var content = $("#writingcontainer");
	
	//Manage click events
	sections.click(function(){
		//show the loading bar
		showLoading();
		//load selected section
		switch(this.id){
			case "link1":
				content.load("http://dimmak.com/tv/all-leather/ #videocontainer", hideLoading);
				break;
			case "link2":
				content.load("http://dimmak.com/tv/bloc-party/ #videocontainer", hideLoading);
				break;
			case "link3":
				content.load("http://dimmak.com/tv/the-bloody-beetroots/  #videocontainer", hideLoading);
				break;
			case "link4":
				content.load("http://www.mercedeshelnwein.com/writing/books/devil-got-religion #wrap", hideLoading);
				break;
			
				
			default:
				//hide loading bar if there is no selected section
				hideLoading();
				break;
		}
	});

	//show loading bar
	function showLoading(){
		loading
			.css({visibility:"visible"})
			.css({opacity:"1"})
			.css({display:"block"})
		;
	}
	//hide loading bar
	function hideLoading(){
		loading.fadeTo(1000, 0);
	};
});