//INITS FOR MAIN PAGE
	current_section="home";
	function home_inits(){
		console.log('home_inits');
		HomeNav.set_state('home'); 
		if (document.getElementById) { //for sound controls
            flashMovie = document.getElementById("soundtrack");
			//console.log(flashMovie);
        }
	}
	
	//SOUND CONTROLS
	var flashMovie;
	function fadeSoundUp() {
  		flashMovie.fadeup();
	  }
	function fadeSoundDown() {
		flashMovie.fadedown();
	}

	//moving the BG image
	window.addEvent('domready', function(){adjust_bg('home_bg',400)});
	window.onresize=function(){
		adjust_bg('home_bg',355);
	}
	


	
	
			
		
	
	