﻿$(function() {
    $("#btn_home").hover(function() {
        $(this).attr("src", "images/v2/btn_home_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_home.jpg");
    });
    $("#btn_about").hover(function() {
        $(this).attr("src", "images/v2/btn_about_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_about.jpg");
    });
    $("#btn_news").hover(function() {
        $(this).attr("src", "images/v2/btn_news_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_news.jpg");
    });
    $("#btn_store").hover(function() {
        $(this).attr("src", "images/v2/btn_store_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_store.jpg");
    });
    $("#btn_forum").hover(function() {
        $(this).attr("src", "images/v2/btn_forum_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_forum.jpg");
    });
    $("#btn_pictures").hover(function() {
        $(this).attr("src", "images/v2/btn_pictures_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_pictures.jpg");
    });
    $("#btn_videos").hover(function() {
        $(this).attr("src", "images/v2/btn_videos_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_videos.jpg");
    });
    $("#btn_course").hover(function() {
        $(this).attr("src", "images/v2/btn_field_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_field.jpg");
    });
    $("#btn_calendar").hover(function() {
        $(this).attr("src", "images/v2/btn_calendar_hover.jpg");
    }, function() {
        $(this).attr("src", "images/v2/btn_calendar.jpg");
    });
});