var originalFontSize = 0;

$(document).ready(
	function()
	{
		bindFontsize();
        
        doFotomodule();
	}
);



function bindFontsize()
{
	$("#text-size #small a").click(
		function()
		{
			$('html').css('font-size', "100%");
		}
	);

	$("#text-size #medium a").click(
		function()
		{
			$('html').css('font-size', "108%");
		}
	);

	$("#text-size #large a").click(
		function()
		{
			$('html').css('font-size', "117%");
		}
	);
}

function doFotomodule()
{
    $().piroBox({
			my_speed: 400, //animation speed
			bg_alpha: 0.1, //background opacity
			slideShow : true, // true == slideshow on, false == slideshow off
			slideSpeed : 4, //slideshow duration in seconds(3 to 6 Recommended)
			close_all : '.piro_close,.piro_overlay'// add class .piro_overlay(with comma)if you want overlay click close piroBox

	});
}

