p3 = {

	switch_video:function(e){
		title = $(this).attr('title'); //for video title name
		rel = $(this).attr('rel'); //for video file name
		
			$('#video_title').html(title);
			$('#player').attr('href', 'images/videos/'+rel);
			flowplayer("player", "http://www.tvb.com.au/js/flowplayer/flowplayer.commercial-3.2.7.swf",
						{
						key: '#$0dd3f71037f40d73ba0',
						clip:  { 		
								autoPlay: true, 
								autoBuffering: true 
								} 
						});
					
	},

	readyFunction: function(){
		if($("#player").html()!== null)
		{
			flowplayer("player", "http://www.tvb.com.au/js/flowplayer/flowplayer.commercial-3.2.7.swf",
					{
					key: '#$0dd3f71037f40d73ba0',
					clip:  { 		
							autoPlay: true, 
							autoBuffering: true 
							} 
					});	
			$('a.top_video').click(p3.switch_video);
		}
		
	}

}
$(document).ready(p3.readyFunction);
