';
$(buttonCode).insertBefore($('.index-list'));
$('.desktop-menu a:first').addClass('activeFilter');
}
});
function textTweaks() {
var theParas = $('.main-content p');
$(theParas).each (function() {
var swapText = '';
if ($(this).is(':contains("#")')) {
swapText=$(this).text().split('# ')[1];
$(this).replaceWith(''+swapText+'
');
}
if ($(this).is(':contains("*")')) {
swapText=$(this).text().split('* ')[1];
$(this).replaceWith('');
}
});
return false;
}