var tvDiv		= 'petatv-video';
var swfWidth	= 335;
var swfHeight	= 255;
var tvShows		= {
	
	
	'coldblooded':	{
						'title':	'Cold-Blooded Horrors',
						'desc':		'<p>Every year, millions of animals are bludgeoned, stabbed and even skinned alive to be turned into fashion accessories. Wildlife biologist Clifford Warwick exposes the truth about the slaughter of animals whose skins are stolen for fashion.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=cold-blooded_horrors_peta_high'
					},


	'seal-slaughter':	{
						'title':	'Canada: The Whole World Is Watching',
						'desc':		'<p>More than 200,000 baby seals are slaughtered every year during the Canadian seal massacre. With the Vancouver Olympics fast approaching, Canada has a chance to better its image by ending this slaughter.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=canada_seal_slaughter_vancouver2010_peta_ap_high'
					},
					
					
	'alicia-mayer':	{
						'title':	'Alicia Mayer\'s Sexy Photo Shoot',
						'desc':		'<p>Cover girl and actor Alicia Mayer records a hot new ad for PETA urging people to go vegetarian. Alicia tells us her secret to staying slim and sexy&mdash;a vegetarian diet!</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=alicia_mayer_veg_psa_pap_high'
					},
	'chinese-fur':	{
						'title':	'Undercover Investigation: China\'s Fur Farms',
						'desc':		'<p>Shocking investigative footage of fur farms in China, where there are no regulations governing fur farms, reveals miserable lives and excruciating deaths. &copy;SAP/East Internat</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=fur_farm_high'
					},
					
	'mulesing-main':	{
						'title':	'Mulesing',
						'desc':		'<p>PETA Asia-Pacific was recently sent this mulesing footage from an Australian farmer hoping to prove that mulesing is humane. Watch the footage, and judge for yourself.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=mulesing_peta_ap_high'
					},
					
'meet-your-meat':	{
						'title':	'Meet Your Meat',
						'desc':		'<p>The green pastures and idyllic barnyard scenes of years past are now distant memories. Take a stand against cruelty to animals: By switching to a vegetarian diet, you will save more than 100 animals a year.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=meet_your_meat_high'
					},
'mulesing':		{
						'title':	'Mulesing',
						'desc':		'<p>PETA Asia-Pacific was recently sent this mulesing footage from an Australian farmer hoping to prove that mulesing is humane. Watch the footage, and judge for yourself.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=mulesing_peta_ap_high'
					},
'pam_kfc_long_pap_PAL':	{
						'title':	'Pam Anderson Takes on KFC',
						'desc':		'<p>Watch Pam Anderson\'s provocative new video, and find out why she wants you to boycott KFC! (All undercover investigation footage was shot in the facilities of KFC US\' suppliers.)</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=pam_kfc_long_pap_PAL_high'
					},
'jd-fortune':	{
						'title':	'J.D. Fortune\s New Ad',
						'desc':		'<p>INXS\' lead singer, J.D. Fortune, records a public service announcement for PETA U.S. urging people to go vegetarian! J.D. wants his fans to love animals and not eat them, just as he does.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=jd_fortune_high'
					},
'testing-123':	{
						'title':	'Testing ... One, Two, Three',
						'desc':		'<p>PETA US\' edgy video&mdash;Testing ... One, Two, Three&mdash;sheds a fresh light on the cruelty, injustice, and inaccuracy of animal experimentation.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=testing123_high'
					},
					
'glasswalls':	{
						'title':	'Paul McCartney Narrates PETA\'s New \'Glass Walls\' Video',
						'desc':		'<p>Music legend and activist Paul McCartney delivers a powerful narration of this must-see video. Watch now to discover why everyone would be vegetarian if slaughterhouses had glass walls.</p>',
						'swf':		'http://www.petatv.com/swf/video.swf?v=glass_walls_paul_mccartney_peta_ap_high'
					}
					
					
};

function getPETATV( id )
{
	var html	=	'';
	if ( tvShows[id] )
	{
		html		+=	'<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+ swfWidth +'" height="'+ swfHeight +'" id="'+ tvShows[id].title +'" align="middle">';
		html		+=	'<param name="allowScriptAccess" value="sameDomain" />';
		html		+=	'<param name="allowFullScreen" value="false" />';
		html		+=	'<param name="movie" value="'+ tvShows[id].swf +'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />';
		html		+=	'<embed src="'+ tvShows[id].swf +'" quality="high" bgcolor="#ffffff" width="'+ swfWidth +'" height="'+ swfHeight +'" name="'+ tvShows[id].title +'" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
		html		+=	'</object>';
		html		+=	'<div class="video-text">';
		html		+=	'<h3>'+ tvShows[id].title +'</h3>';
		html		+=	tvShows[id].desc;
		html		+=	'</div>';
	}
	return html;
}

function showPETATV( id )
{
	document.write( getPETATV( id ) );
}

function swapPETATV( id )
{
	$( tvDiv ).innerHTML = getPETATV( id );
}
