// JavaScript Document
$(document).ready(function() {
    $(document).pngFix(); 
    /*$("#img1x").bind("mouseover", function() {
      var src = ($(this).attr("src") === "themes/kcms_temp1/15.png")
                    ? "themes/kcms_temp1/4.png" 
                    : "themes/kcms_temp1/15.png";
      $(this).attr("src", src);
    });
    $("#img1x").bind("mouseout", function() {
      var src = ($(this).attr("src") === "themes/kcms_temp1/4.png")
                    ? "themes/kcms_temp1/15.png" 
                    : "themes/kcms_temp1/4.png";
      $(this).attr("src", src);
    });*/

    $("#img1x").mouseover(function() {
        $(this).attr({
        src: "themes/kcms_temp1/4b.png",
        width: "54",
        height: "54"
        });
    });
    $("#img1x").mouseout(function() {
        $(this).attr({
        src: "themes/kcms_temp1/4.png",
        width: "54",
        height: "54"
        });
    });
    
    $("#img2x").mouseover(function() {
        $(this).attr({
        src: "themes/kcms_temp1/1b.png",
        width: "54",
        height: "54"
        });
    });
    $("#img2x").mouseout(function() {
        $(this).attr({
        src: "themes/kcms_temp1/1.png",
        width: "54",
        height: "54"
        });
    });
    
    $("#img3x").mouseover(function() {
        $(this).attr({
        src: "themes/kcms_temp1/3b.png",
        width: "54",
        height: "54"
        });
    });
    $("#img3x").mouseout(function() {
        $(this).attr({
        src: "themes/kcms_temp1/3.png",
        width: "54",
        height: "54"
        });
    });
    
    /*$("#img4x").mouseover(function() {
        $(this).attr({
        src: "themes/kcms_temp1/2b.png",
        width: "54",
        height: "54"
        });
    });
    $("#img4x").mouseout(function() {
        $(this).attr({
        src: "themes/kcms_temp1/2.png",
        width: "54",
        height: "54"
        });
    });*/
});