function poisonroll() {
	$('#photoview .theimg').html('<embed id="roll" src="http://caseybritt.com/casey/whisker/poison.swf" width="500" height="375"></embed>');
}

function revertroll() {
	$('#photoview .theimg').html(theOrig);
}

$(document).ready(function () {
	if ($('.the-id').attr('id') == 'poison') {
		theOrig = $('#photoview .theimg').html();
		setTimeout("poisonroll()", 3000);
		// setTimeout("revertroll()", 270000);
	}
});
