	$(function() {
		$('.cat-item a').html('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;')
//		$('.vvqbox object').attr('width','100%');
//		$('.post img, .wp-caption').css('height','auto').css('width','auto');

//		$('.post:eq(1)').after('<div class="post ad"><br><br></div>');
//		$('.navigation,#respond').addClass('post2');
//		$('.page').addClass('post');	
//		$('.widecolumn .post,#respond, .navigation, #sidebar').addClass('twocols');	


	//	$('.post h2, #header h1').each(function() {
	//			if (/s|r|e|a|i|t/.test($(this)[0])) // && Math.random()*2 < 1

		$('h1 a,h2 a,h3 a, .categories > ul > li a, .widecolumn .post > h2, .efeito').each(function() {
			texto=$(this).text();
			text='';
			for (var i=0; i < texto.length; i++) {
				var caract = texto.charAt(i);

				if (Math.random()*2 < 1 &&  caract == caract.toLowerCase()) //

					text += '<i>'+caract+'</i>';
				else
					text += caract.toUpperCase();
			} 			
			$(this).html(text);
		});
	});
