$(document).ready(function(){
	
	var x = 0;	// counter variable for the films arrays
	var currFilmIndex;	// stores the index of the current film
	
	var filmsArray = new Array();
	filmsArray[0] = "/projects/insidethehouseofviktorandrolf/flv/jose.xml";
	filmsArray[1] = "/projects/insidethehouseofviktorandrolf/flv/ulrich.xml";
	filmsArray[2] = "/projects/insidethehouseofviktorandrolf/flv/judith.xml";

	var filmTitlesArray = new Array();	
	filmTitlesArray[0] = "Film 1";
	filmTitlesArray[1] = "Film 2";
	filmTitlesArray[2] = "Film 3";

	currFilmIndex = 0;

	 $("#VideoThumbnails a").css("opacity", ".1");
	
	 $("#VideoThumbnails a").click(function()
	  {
    		 $("#VideoThumbnails a").css("opacity", ".1");
			$(this).css("opacity", "1");
		
      });

	 $("#VideoThumbnails a:first").css("opacity", "1");


	//var currFilmIndex = location.hash.substring(1);	

	// if no currFilmIndex selected set it as 0
	//if(currFilmIndex == ""){
	//			}
					
	loadCurrentFilm();
	// initialize google Stats
	$.gaTracker('UA-7210865-1');

	// when clicking the individual films load the corresponding player
	$('#VideoThumbnails a').mousedown(function() {
			currFilmIndex = $(this).attr("href").substring(1);
			loadCurrentFilm();
	});
		
	function loadCurrentFilm(){
			$('.VideoPlayer').attr('href', '/swf/videoplayer.swf?xmlsrc='+ filmsArray[currFilmIndex] + '&amp;autoplay=true');	
			$('.VideoPlayer').media( {   width: 480, height: 300, params:{allowFullScreen:true}, bgColor:'#000000', flashVersion:'9'  });	
	}
	
	function removeSelectedNav()
	{
			$(".selectedThumb").removeClass("selectedThumb");	
	}
 	
});


