function photoStripNav(ide,img_offset) {
	document.getElementById('photo-strip_'+ide).innerHTML = '<div align="center"><img src="/images/loading.gif"></div>';
	AjaxRequest.post({
		'url' : '/photos/photo-strip/?img_offset='+img_offset+'&ide='+ide+'&limit='+3,
		'onSuccess':function(req){ 
			document.getElementById('photo-strip_'+ide).innerHTML = req.responseText;
		}
	});	
}

function testimonial_skybox(limit,ide) {
	if (!ide) title = 'Birthday Party Planner Testimonial';
	else title = '';
	model = 'website_bd_testimonial';
	querystring = '';
	div_id = 'website_bd_testimonial';
	refresh_div_uri = '/birthday-party/website_bd_testimonial?limit=' + limit;
	open_skybox_profile(title,model,ide,querystring,div_id,refresh_div_uri);
}
