﻿
            $(document).ready(function() {
                $(".rollover").hover(function() {
                    $(this).fadeTo(200, 0.5);
                },
                function() {
                    $(this).fadeTo("fast", 1);
                }
                );
            });

            function pageLoad(sender, args) {
                if (args.get_isPartialLoad()) {
                    $(".rollover").hover(function() {
                        $(this).fadeTo(200, 0.5);
                    },
                function() {
                    $(this).fadeTo("fast", 1);
                }
                );
            
                }
            }