// JavaScript Document

$(document).ready(function(){
	/* Common functions... */
	clearClick();
	setBrowserClass();
	cssTweaks();

	/* Show non-flash content */
	if(!swfobject.hasFlashPlayerVersion('9.0.0')){
		$('.noflash').show();
		$('body').attr('class', $('body').attr('class') + ' noflash');
	} else {
		$('body').attr('class', $('body').attr('class') + ' hasflash');
	}
});

function cssTweaks(){
	$('blockquote').each(function(i,elem){ $(elem).find('p:last').css('margin',0); });
	$('ol li').wrapInner('<span></span>');
}
