jQuery.noConflict();

jQuery(document).ready(function() {
    jQuery("img.videoteaser")
        .mouseover(function() { 
            var src = jQuery(this).attr("src").match(/[^\.]+/) + "-hover.jpg";
            jQuery(this).attr("src", src);
        })
        .mouseout(function() {
            var src = jQuery(this).attr("src").replace("-hover", "");
            jQuery(this).attr("src", src);
        });
});

