$(window).load(function() {
	var flash = getFlashMovie('card');
	if ($("#characters").length > 0) {
		setTimeout(function() { flash.start(); }, 100);
		setTimeout(function() { if ($("#characters").length > 0) flash.reverse(); }, 5000);
	}
});

function getFlashMovie(movieName) {   
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];  
}

