/* 
 * PLUGGIN TO REGISTER EVENT HOOKS TO TOP TESTIMONIALS
 */

var TESTIMONIAL_DEFAULT = "Every journalist should take advantage of your awesome, free training.";

(function( $ ) {
  $.fn.rsTestimonial = function() {

    this.hover(function(){
        var msg = $(this).find('div.testimonial_top_msg').html();
        var byline = $(this).find('div.testimonial_byline').html();
        byline = "&ndash;&nbsp;" + byline;
        
            $('span#testimonial_message').html(msg);
            $('div#testimonial_byline').html(byline);
        
        
    }, function(){
        $('span#testimonial_message').html(TESTIMONIAL_DEFAULT);
        $('div#testimonial_byline').html("");

    });
    return this;
  };
})( jQuery );
    

