// JavaScript Document
jQuery(document).ready(function() {

	jQuery("#infinite").scrollable({circular:true});

	// http://jquery.lukelutman.com/plugins/flash
	// TODO
	// remove the /dpltherapy/ from the production site to get it to work
	
	flashembed('#flashPlayer',{ src: '/dpltherapy/images/videos/Bobby.swf',
								width : 320,
								height : 240 });
	jQuery('img').click(function() 
		{	
			if(jQuery(this).attr('id')=='flashVideo') {
				$name = jQuery(this).attr('name');					
				jQuery("#flashPlayer").html(""); // empty innerHTML
				jQuery("#flashPlayer").flashembed(
				{
					src : '/dpltherapy/images/videos/'+$name+".swf",
					width : 320,
					height : 240
				});
				return false;
			}			
		}
	);
});