$(document).ready (function() {
	//canviar fulles estils (mesures)
	if ($.cookie('mida') != null)	activaEstils($.cookie('mida'));
	$('.mida_text a').each(function(e){
		$(this).click(function(){
			var tipus = $(this).attr('class').substr(4);
			$.cookie('mida', tipus, {expires: 30});
			activaEstils(tipus);
			return false;
		});
	});
});
function activaEstils(nom){
	$('link[title]').each(function(f){
		$(this).attr('disabled','disabled');
		if ($(this).attr('title') == nom) $(this).removeAttr('disabled');
	});
}
