// giZ on gizstyle.com jQuery implementation ´¯`·.¸¸.*

//ACTIONS

$(document).ready(function(){
	
$(".tsmall").click(function(){
  $(".storycontent").animate({  
   		fontSize: "12px"
   }, 1500 );
});

$(".tmedium").click(function(){
  $(".storycontent").animate({  
   		fontSize: "14px"
   }, 1500 );
});

$(".tlarge").click(function(){
  $(".storycontent").animate({  
   		fontSize: "16px"
   }, 1500 );
});

$("#barra").slideDown("slow");

});
