function ChangeVideo(filename)
{
	$('#player').attr('href', filename);
	flowplayer("player", "/upload/photos/7199flowplayer-3.1.5.swf", {
		clip: {
			autoPlay: true,
			autoBuffering: true
		},
        plugins: { 
		    controls:{
                        url: '/upload/photos/7199flowplayer.controls-3.1.5.swf'
                    } 
		}
	});

}

$(document).ready(function(){
	$('#video1').click(function(){ChangeVideo('/upload/photos/7199OnAllTerrain60.flv');});
	$('#video2').click(function(){ChangeVideo('/upload/photos/7199AtAllTimes30.flv');});
	$('#video3').click(function(){ChangeVideo('/upload/photos/7199AtAllTimes60.flv');});
	ChangeVideo('/upload/photos/7199OnAllTerrain60.flv');
	
	$('#quoteText').cycle({ 
		fx: 'fade',
		delay: 3000, // Control the amount of time in between transitions
		speedIn: 550,
		speedOut: 550,
		pause: true	
	});
});