// JavaScript Document

function initNoFlashContent(){
	$('.no_flash').show();
	$('#no_flash_nav ul li').each(function(i,elem){
		var width = 0;
		switch(i){
			case 0: width = 130; break;
			case 1: width = 160; break;
			case 2: width = 155; break;
			case 3: width = 140; break;
			case 4: width = 95; break;
			default: width = 0; break;
		}
		$(elem).css('width',width+'px');
	});
}
