jQuery(document).ready(function() {
    
    if($.cookie('TEXT_SIZE')) {
	    $('body').addClass($.cookie('TEXT_SIZE'));
	  }
	  
	  $('#fontsize a').click(function() {
	    
	    var textSize = $(this).parent().attr('class');
	    $('body').removeClass('small medium large').addClass(textSize);
	    $.cookie('TEXT_SIZE',textSize, { path: '/', expires: 10000 });
	    //$("#font-" + $.cookie('TEXT_SIZE')).attr("src","assets/images/site/icons/t-" + $.cookie('TEXT_SIZE') + "-over.png");
	    
	    return false;
	  });
	  
	  if($('.banner img').length > 1) {
		jQuery('.banner').jcarousel({
		auto: 4,
		scroll: 1,
		animation: 700,
		wrap: 'circular'      
		});
	  }
    
    jQuery("#btn_print").click( function() {
      jQuery('.content').jqprint();
      return false;
    });

	  
});

