$(document).ready(function(){

    $('.elinks img').hover(
        function(){
            var newSrc = $(this).attr("src").replace(".jpg","_over.jpg");
			$(this).attr("src",newSrc);
        },
        function(){
            var oldSrc = $(this).attr("src").replace("_over.jpg",".jpg");
			$(this).attr("src",oldSrc);

        }
    );

    $('.elinks img').each($(this).hover());

});


