 $(function(){
     //Blog
     $('.byline a').each(function(index){
     	   $(this).html('Posted by: ' + $(this).html() ); 
     	   $(this).css({'text-decoration' : 'none' , 'font-size' : '13px'}); 
     	   $(this).prependTo( $(this).parent().parent() ); //move author chunk
     });
     
     $('.byline').each(function(index){
     	var text = $(this).html();
     	text = '<span class="date">' + text.substr(16, text.length) +'</span>'; //cut and wrap
     	$(this).html(text);
     	var adate = $(this).find('.date').html(); //cut the @
     	adate = adate.substr(1, adate.length - 13);
     	$(this).html(adate);
     	$(this).prependTo($(this).parent() ); //move date chunk
     });
 });
