﻿$.preloadImages("/images/block_fsp_on.png", "/images/block_cec_on.png", "/images/block_edu_on.png", "/images/block_ags_on.png", "/images/block_com_on.png");

$(document).ready(function(){

    $("#fsp").hover(
        function () {
            $(this).attr("src", "/images/block_fsp_on.png");
    },  function () {
            $(this).attr("src", "/images/block_fsp.png");
    });

    $("#cec").hover(
        function () {
            $(this).attr("src", "/images/block_cec_on.png");
    },  function () {
            $(this).attr("src", "/images/block_cec.png");
    });

    $("#edu").hover(
        function () {
            $(this).attr("src", "/images/block_edu_on.png");
    },  function () {
            $(this).attr("src", "/images/block_edu.png");
    });

    $("#ags").hover(
        function () {
            $(this).attr("src", "/images/block_ags_on.png");
    },  function () {
            $(this).attr("src", "/images/block_ags.png");
    });

    $("#com").hover(
        function () {
            $(this).attr("src", "/images/block_com_on.png");
    },  function () {
            $(this).attr("src", "/images/block_com.png");
    });

});