	sectionPath = '/section/';

	try {
		document.execCommand("BackgroundImageCache", false, true); 
	} catch (err) {}

	function resizeImg(id, r_size) 
	{
		if ($type(id) == 'element') {
			var size = r_size.split('x');

			id.width  = size[0];
			id.height = size[1];

			if (r_size == '126x76') {
				id.src = id.src.replace(/150x90/, '126x76');
				id.style.backgroundImage = id.style.backgroundImage.replace(/150x90/, '126x76');
				document.getElementById(id.id + '_box').style.zIndex = '10';
				document.getElementById(id.id + '_title').className = 'thumbnail_title';
			}
			if (r_size == '150x90') {
				id.src = id.src.replace(/126x76/, '150x90');
				id.style.backgroundImage = id.style.backgroundImage.replace(/126x76/, '150x90');
				document.getElementById(id.id + '_box').style.zIndex = '11';
				document.getElementById(id.id + '_title').className = 'thumbnail_title_a';
			}
		}
	}