function setLeftCornerVisibility(visibility)
{
	document.getElementById('nav_rot').style.visibility = visibility;
}

$(document).ready(function() {

	$('.mbu-jquery-slider').each(function() {

		var holder=$(this);
		var holderContent = [];
		$(holder).find('dt').each(function() {
			holderContent.push($(this).html());
		});
		$(holder).html(holderContent.join(''));
		$(holder).cycle({
			fx: 'fade'
		});
	});
});



