/*===========================================================================
	Presentational (The Firm)
	
	This JavaScript executes dynamic behaviors such as:
	* Preloading images
	* Flash Replacements (i.e. sIFR, UFO, SWFObject, etc.)
===========================================================================*/

$(function() { // DOM Ready
	// create video link
	$('<p class="watchVideo"><a href="/_media/videos/video.htm?video=what_distinguishes_LFD" title="Watch Video">Watch Video</a></p>')
		// insert after summary
		.insertAfter('#summary')
		.find('a')
			// prepare video launcher for when clicked (defined in global actions)
			.prepareVideoLauncher();
});
