function resizeText(multiplier, tipus){
	switch (tipus){
		
		case 'red':
			if (Cookie.read('site_font_size')){		
				// Use MooTools to get the cookie (if it exists)
				fontsz = Cookie.read('site_font_size');
			}else{
				var fontsz = "11px"; //Default to 11px
			}
			
			fontsz2 = fontsz.substr(0,2);
				
			if (fontsz2>11){
				fontsz = parseInt(fontsz) + parseInt(multiplier);
					
				fontsz = fontsz + "px"; // Change body text size
				paragrafs = $$("p");
				for (i=0; i<paragrafs.length; i++){
				   paragrafs[i].setStyle("font-size", fontsz);
				}	
					
				//Set a new cookie with MooTools	
				var myCookie = Cookie.write('site_font_size', fontsz, {		
					 domain: 'e-politicae.com',
					 duration: 365 //Save for 1 year
			    });
			}
		break;
		
		case 'aug':
			if (Cookie.read('site_font_size')){		
				// Use MooTools to get the cookie (if it exists)
				fontsz = Cookie.read('site_font_size');
			}else{
				var fontsz = "11px"; //Default to 11px
			}
			
			fontsz2 = fontsz.substr(0,2);
			
			if (fontsz2<14){
				fontsz = parseInt(fontsz) + parseInt(multiplier);
					
				fontsz = fontsz + "px"; // Change body text size
				paragrafs = $$("p");
				for (i=0; i<paragrafs.length; i++){
				   paragrafs[i].setStyle("font-size", fontsz);
				}	
					
				//Set a new cookie with MooTools	
				var myCookie = Cookie.write('site_font_size', fontsz, {		
					 domain: 'e-politicae.com',
					 duration: 365 //Save for 1 year
			    });
			}
		break;
		
		default:
			if (Cookie.read('site_font_size')){		
				// Use MooTools to get the cookie (if it exists)
				fontsz = Cookie.read('site_font_size');
			}else{
				var fontsz = "11px"; //Default to 11px
			}
			
			fontsz = parseInt(fontsz) + parseInt(multiplier);
				
			fontsz = fontsz + "px"; // Change body text size
			paragrafs = $$("p");
			for (i=0; i<paragrafs.length; i++){
			   paragrafs[i].setStyle("font-size", fontsz);
			}	
				
			//Set a new cookie with MooTools	
			var myCookie = Cookie.write('site_font_size', fontsz, {		
				 domain: 'e-politicae.com',
				 duration: 365 //Save for 1 year
		    });
		break;
	}	
} 