﻿$(document).ready(function () {
    $("img[id^='prm_']").each(function () {
        $(this).mouseover(function () {
            $(this).fadeTo(100, 0.33);
            $(this).fadeTo(100, 1);
        });

        $(this).mouseout(function () {
        });
    });

    /*
    $("#sw11").effect("slide", { direction: 'right' }, 1500);
    $("#sw11img").bind("mouseover", function () {
    $("#sw11img").attr("style", "border:7px solid #ddd;");
    });
    $("#sw11img").bind("mouseleave", function () {
    $("#sw11img").attr("style", "border:7px solid #fff;");
    });
    */

    $("#sw11").hide();

    // show automatically on page load
    //$("#sw11lnk").trigger('click');
});
