$(document).ready(function(){
			  		   

			   $("a[rel='colorbox']").colorbox(); // rel="colorbox"
			   $("a.colorbox").colorbox(); // rel="colorbox"

				/* menu cell 7 */
				  
	/*				$('#MmTable tr td').hover	( 
function(){
$(this).find('ul').css("z-index","150");
$(this).find('ul').slideDown('slow'); 
},
function(){
$(this).find('ul').css("z-index","10");
$(this).find('ul').slideUp(150);
})	*/

/*$('#MmTable tr td').hover    ( 
                    function(){
                    $(this).find('ul').css("z-index","150");
                    $(this).find('ul').show(200); 
                    },
                    function(){
                    $(this).find('ul').css("z-index","10");
                    $(this).find('ul').hide(150);
                    })    
            
*/            

$('#MmTable tr td').hover    ( 
                function(){
                $(this).find('ul').css("z-index","150");
                $(this).find('ul').stop(true, true).fadeIn();
    
                },
                function(){
                $(this).find('ul').css("z-index","10");
                $(this).find('ul').stop(true, true).fadeOut();
                })  
				/*$('#MmTable tr td').hover    ( 
                function(){
                $(this).find('ul').css("z-index","150");
                $(this).find('ul').stop(true, true).slideToggle(200);
            
                },
                function(){
                $(this).find('ul').css("z-index","10");
                $(this).find('ul').stop(true, true).slideToggle(150);
                })    */

			
			});


