﻿$(document).ready(function() {

    // Top links hover
    $(".skin2 .center .banner .links img").hover(function() {
        $(this)[0].src = $(this)[0].src.replace("-g.gif", "-o.gif");
    }, function() {
        $(this)[0].src = $(this)[0].src.replace("-o.gif", "-g.gif");
    });

    // Menu hover
    $(".skin2 .center .content .menu .link img").hover(function() {
        $(this)[0].src = $(this)[0].src.replace("_o.gif", "_g.gif");
    }, function() {
        $(this)[0].src = $(this)[0].src.replace("_g.gif", "_o.gif");
    });
});

