if($.cookie('TEXT_SIZE')) {
		$('body').addClass($.cookie('TEXT_SIZE'));	
}
$(document).ready(function() { 
	$('#resizer a').click(function() {
			var textSize = $(this).attr('class');
			$('body').removeClass('small medium large').addClass(textSize);
			$.cookie('TEXT_SIZE',textSize, { path: '/', expires: 10000 });
			
			$('.home_panel_content').removeAttr("style");

			
			equalHeight(  $('.home_panel_content')  );
			
			return false;
			
			
	});
	

});
