/** * (c) 2008, Wacko-Wacko!
 * @author daclip
 */var body_ptr = null;var total_flash_video = 0;var logo = null;var Contacts = null;var Pullback = null;var English = null;	var Exposition = null;var ScreenSlide = null;var lastItem = null;var currentFontId = 0;function changeFont() {	if (++currentFontId > 3) currentFontId=0;	if (currentFontId == 0) body_ptr.style.fontFamily = "Trebuchet MS";	if (currentFontId == 1) body_ptr.style.fontFamily = "Arial";	if (currentFontId == 2) body_ptr.style.fontFamily = "Times";	if (currentFontId == 3) body_ptr.style.fontFamily = "Sans-Serif";}
function initLogo() {	logo = new WImageLoop();	logo.setHolder('logoImage');	logo.add("/img/logo_b.png");	logo.add("/img/logo_c.png");	logo.add("/img/logo_d.png");	logo.add("/img/logo_e.png");	logo.add("/img/logo_a.png");}		function init() {	$("#timeline-slider").slider( {		min: 0,		max: 5000,		slide: function(event, ui) {			$("#exposition_container").scrollLeft(ui.value);		}	});		body_ptr = document.getElementsByTagName("body")[0];		initLogo();	Contacts = new WHighLight('ContactsHighlight');	Pullback = new WHighLight('PullbackHighlight');	English = new WHighLight('EnglishHighlight');}
