var fontsize = {'fontsize1':'0.68','fontsize2':'0.9','fontsize3':'1.1'};

function setLink(){
	$('#fontDimension a.changefont').each(function(){
		$(this).click(function(event){
			event.preventDefault();
			setFontDimension($(this).attr('id'));
		})
	})
}

function checkFontDimension(){
	var myFontSize = 'fontsize1';
	if ($.cookie('myFontSize') != null){
		myFontSize = $.cookie('myFontSize');
	}
	$('body').css('fontSize',fontsize[myFontSize] + 'em');
}

function setFontDimension(myFontSize){
	$.cookie('myFontSize',myFontSize);
	checkFontDimension();
}


//gestione click voci menu accesso rapido
$(document).ready(function () {

    $('.step3 div').each(function (index) {

        $(this).find('a').bind("click", function (event) {
            event.preventDefault();
            $('.step2').css("width", "0px");

            $('.step3 div').removeClass('on');
            $(this).addClass('on');

            $('.step2').each(function (i) {
                $(this).stop();
                $(this).hide();
                $(this).css("width", "0px");

                if (i == index) {
                    $(this).show();
                    $(this).animate({ 'width': '278px' }, 500);
                }
            });
        });
    });

});
