// JavaScript Document

$(document).ready(function(){
	// Common functions
	clearClick();
	cssTweaks();
	
	// Show non-flash content
	if(!hasFlash){
		$('.no_flash').show();
		$('.has_flash').remove();
	}else{
		$('.no_flash').remove();
	}
	
	// PNG support for IE6
	if(isIE(6)){
		$(document).pngFix();
	}
	
});


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