function embed_play(vid_url, img_url, w, h, div){
	
	$('#'+div).html('');
	
	$('#'+div).append('<div id="'+vid_url+'"></div>');
	
	$.fn.jwplayer_render(
	{ 	
		id: vid_url,
		file: vid_url+'.mp4',
		folder: 'vod.plurotech/mccord.plurotech/pinnaclife/testimonials/'
	},{
		autostart:true,
		flashplayer: "assets/flash/jwplayer.swf",
		width: w,
		height: h,
		screencolor: 'bdd67b',
		image: "assets/images/green.jpg"
	});
	
	document.location.href="testimonials.html#" + vid_url;
}
function embed_go_url(){
	var fullurl = document.location.href;
	var video = fullurl.substring(fullurl.indexOf('#')+1, fullurl.length);
	
	if(fullurl.indexOf('#') > 0){
		embed_play(video, 'video_testi'+video+'.jpg', '526', '391', 'testimonials_player');
	}else{
		embed_play('bill_casale','video_testi_harriet.jpg','526','391','testimonials_player');
	}
}


// ask doctors

function ask_doctors_play(vid_url, img_url, w, h, div){

	$('#'+div).html('');

	$('#'+div).append('<div id="'+vid_url+'"></div>');
	
	$.fn.jwplayer_render(
	{ 	
		id: vid_url,
		file: vid_url,
		folder: 'vod.plurotech/mccord.plurotech/pinnaclife/ask_experts/'
	},{
		autostart:true,
		flashplayer: "/assets/flash/jwplayer.swf",
		width: w,
		height: h,
		image: img_url
	});
	
	
}
function ask_doctors_stop(vid_url, img_url, w, h, div){
	
	$('#'+div).html('');
	alert(vid_url);
	$('#'+div).append('<div id="'+vid_url+'"></div>');
	
	$.fn.jwplayer_render(
	{ 	
		id: vid_url,
		file: vid_url,
		folder: 'vod.plurotech/mccord.plurotech/pinnaclife/ask_experts/'
	},{
		autostart:true,
		flashplayer: "/assets/flash/jwplayer.swf",
		width: w,
		height: h,
		image: img_url
	});
	
}

