/**
 * javascript file for National Cycling Centre
 * @author jontyb
 * @copy Playface Limited 2011
 */

$(document).ready(function()
{
    $("ul.partners img").hover(
        function() {
            var src = $(this).attr("src").match(/[^\.]+/) + "_ro.png";
            $(this).attr("src", src);
        },
        function() {
            var src = $(this).attr("src").replace("_ro", "");
            $(this).attr("src", src);
        }
    );
});
