﻿   
        function ApplyImages()
        {
              jQuery('a.menu').each(function(index) {
                     if((jQuery(this).attr('selected')) == 'true')
                        jQuery(this).find('img').attr('src', '/common/' + jQuery(this).attr("imageSrc") + 'Selected.gif');
                     //else
                     //   $(this).find('img').attr('src', '/common/' + $(this).attr("imageSrc") + '.gif');
                });
        }

    
        jQuery(document).ready(function()
		{  
     
//            try{          
            jQuery('a.menu').bind({

//            click: function() {
//               //alert('click');           
//               //var targetImg = $(this).attr("commandArgs");
//               var imgSrc = jQuery(this).find('img');
//             
//               jQuery('a.frameMenu').removeAttr('selected');
//               jQuery(this).attr('selected','true');
//               
//               //Set
//               ApplyImages();            

//              },
                  
              
              //Rollover
              mouseenter: function() {
                jQuery(this).find('img').attr('src', '/common/' + jQuery(this).attr("imageSrc") + 'Selected.gif');
              },
              
              mouseleave : function(){
                
                if((jQuery(this).attr('selected')) != 'true')
                    jQuery(this).find('img').attr('src', '/common/' + jQuery(this).attr("imageSrc") + '.gif');
              }
              
            });
//            }
//            catch(exc)
//            {
//                //Nulla
//            }


        });





