// this controls the toggle between videos on frankenbok holder page
$('#dineInHell').click(function(){
								$('#samplerVid').hide();
								$('#dihVid').show();
								//explicitly return false to prevent href in area being activated
								return false;
								});
$('#albumSampler').click(function(){
								$('#dihVid').hide();
								$('#samplerVid').show();
								//explicitly return false to prevent href in area being activated
								return false;
								});

