function setFontStyle(mode)
{
	element = document.getElementById("serviceBox");

	if (!element.style.fontSize)
	{
		element.style.fontSize="1em";

	}

	intFontSize = parseFloat(element.style.fontSize);
	//alert(intFontSize);

	switch(mode)
	{
		case "big":
			element.style.fontSize=(intFontSize*1.1)+"em";
			break;
		case "small":
			element.style.fontSize=(intFontSize*0.9)+"em";
			break;
	}
}

function imageGalleryShowPreview(path,text) {
	//alert(text);
	showPreview(path);
	document.getElementById("image_gallery_text").innerHTML = text;
}