$(document).ready(function(){
	
	( $.cookie('tcookie') )? tchange( $.cookie('tcookie') ) : tchange( 0 );
	$('.change_text').click( function(){
		$(this).addClass('selected');
		tchange( $(this).attr('title') );
	});

});

function tchange( d ){
	$('.modifiable_text_size').css({
		fontSize: ""+( 100 + eval(d) )+"%",
	});
	$.cookie('tcookie', ''+d+'');
	return false;
}