function resizeText(multiplier){
		if (document.body.style.fontSize == "") {
			document.body.style.fontSize = "11px";
		}
		document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier) + "px";
}
window.addEvent('domready', function(){
    new MultiBox('multibox', {
        useOverlay: true
    });

window.location.pathname.split("/").each(function(e){
	if(e!="")
		try{
		//console.log(e);
		if($('menu_'+e))
			$('menu_'+e).addClass('active');
		$$('a[href='+window.location.pathname+']').addClass('active');
		}
		catch(err){
			console.log(err);
		}
	})
})
