function onLoad(page_) {

document.getElementById('title_sidemenu').innerHTML="Videos";

$(function() {
$f("player1", "flowplayer/flowplayer-3.1.5.swf",  { 
 
	clip : { 
				autoPlay: false,   
				subTitle: 'Philippian Fellowship',
				scaling: "fit"
			}, 

   playlist: [
         {
            url: 'videos/PF_orphanage.flv',
            title: 'Orphanage Romania [Eng]',
				time : '14 min 48 sec'
         }, 
         {
            url: 'videos/PF_czech.flv',
            title: 'Czech Republic [Eng]',
				time: '13 min 32 sec'
         }, 
         {
            url: 'videos/PF_slovakia_hungary_romania.flv',
            title: 'Slovakia, Hungary, Romania [Eng]',
				time: '10 min 47 sec'
         }
   ],

    // use a "sky blue" background on the player canvas     
    canvas: { 
        backgroundColor:'#000000', 
		  backgroundGradient: 'none'
    }, 
     
    // adjust screen height 
    screen: { 
        height:310, 
        bottom:0         
    }, 
     
    // use a minimalistic controlbar 
    plugins:  { 
        controls:  { 
            backgroundGradient: 'none', 
            backgroundColor: 'transparent', 
				playlist:false,
            all:false,
				volume:true,
				fullscreen:true,
            scrubber:true 
        } 
    }
});

$f("player1").playlist("div.clips:first", {loop:true});
});




}

function test() {
$f("player1").close();
}
function cardofencouragement() {

	image = document.createElement("img");
	image.setAttribute('id','image');

	image.src = "images/home/enc.jpg";
	image.style.position = "absolute";
	image.style.zIndex = "10";
	image.style.border="3px solid #cfcfcf";
	image.style.width="600px";
	document.getElementById("main_window").appendChild(image);

	image.style.top = ""+(image.offsetTop-540)+"px";
	image.style.left = ""+(image.offsetLeft+155)+"px";

	image.onclick = function () { document.getElementById("main_window").removeChild(image); }
}

