var playerCount = 0;

$(document).ready(function() {
	
	$(".flvid img").css("cursor","pointer");
	
	$('.flvid img').click(function() {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', $(this).width(),
			'height', $(this).height(),
			'src', '/swf/fPlayer',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'exactfit',
			'wmode', 'window',
			'devicefont', 'false',
			'container', $(this).parent(),
			'id', 'fPlayer',
			'bgcolor', '#000000',
			'name', 'fPlayer',
			'menu', 'false',
			'FlashVars', 'video=/media/'+$(this).attr('title')+'.flv&frame=/i/framevid.png&ar=16x9&w='+$(this).width()+'&h='+$(this).height(),
			'allowFullScreen', 'true',
			'allowScriptAccess','sameDomain',
			'movie', '/swf/fPlayer'
			); //end AC code
	});
	
	$(".gvid").css("cursor","pointer");

	$('.gvid').click(function() {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', '350',
			'height', '259',
			'src', '/swf/fPlayer',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'exactfit',
			'wmode', 'window',
			'devicefont', 'false',
			'container', $(this),
			'id', 'fPlayer',
			'bgcolor', '#000000',
			'name', 'fPlayer',
			'menu', 'false',
			'FlashVars', 'video=/media/'+$(this).attr('title')+'.flv&frame=/i/framevid.png&ar=4x3&w=350&h=259',
			'allowFullScreen', 'true',
			'allowScriptAccess','sameDomain',
			'movie', '/swf/fPlayer'
			); //end AC code
	});
	
	$('.block blockquote p').css('margin-bottom', '0').append('<img src="/i/rquote.png"/>');
	//$('.block blockquote').children('p:first img').hide();
});




