/**
 * @author dave.rodriguez
 */

$(document).ready(
	function() {
		$('a').click(stopVideoHost);
	}
);

function stopVideoHost() {
	if ($('#flashwrapper2').children().length > 0) {
		var videoName = $('#flashwrapper2').children(0).get(0).id;
		try {
			document[videoName].stopVideo();	
		} catch(e) {
			
		}
	}
}

function thisMovie(movieName) {
	// IE and Netscape refer to the movie object differently.
	// This function returns the appropriate syntax depending on the browser.
	return (navigator.appName.indexOf ("Microsoft") !=-1) ? window[movieName] : document[movieName]; 

}