﻿$(function() {


    if ($.browser.msie) {
        var version = parseInt($.browser.version, 10);
        if (version < 7) {
            alert("This site requiers IE 7 or later.");
        } 
    }

    var txt = $('#rptMainMenu_ctl03_hlMenuItem').css('background-position');
   // $('#buttonBox').supersleight();
    $('#flashBox').supersleight();
    $('#albumad').supersleight();
     $('#mainContentBox').supersleight();

	 $('#ImageButton1').supersleight();

    $('#background').supersleight();
    $(".expandsPanel img").mouseover(

                        function() {

                            var $t = $(this);
                            var $p = $t.parent();
                            $p.animate(
                                 { left: '-=5',
                                     top: '-=5'

                                 },
                                 175);
                            $t.animate(
                                 {
                                     height: '+=10',
                                     width: '+=10'
                                 },
                                 175);


                        });

    $(".expandsPanel img").mouseout(

                        function() {
                            var $t = $(this);
                            var $p = $t.parent();
                            $p.animate(
                                 { left: '+=5',
                                     top: '+=5'

                                 },
                                 175);
                            $t.animate(
                                {

                                    height: '-=10',
                                    width: '-=10'
                                },
                                    175);



                        });



});
