  $(function(){
     //Blog
     $('.byline a').each(function(index){
     	   $(this).addClass('authorLink');
     	   $(this).html('<b>Posted by: </b>' + $(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
     });
     
     $('.listing .post h3.title').each(function(index){
        $(this).prependTo( $(this).parent().parent().find('.post') );	
     });
   
 });
 

