   <!-- FADE IN SUBNAV -->
   $(document).ready(function(){  
        $(".frameRightMain").hover(function() {  
                $(this).stop().animate({ backgroundColor: "#15191d"}, 200); 
                },function() {  
                $(this).stop().animate({ backgroundColor: "#070d10" }, 200);  
                });  
     }); 
   
   $(document).ready(function(){  
        $(".frameRightMain a").hover(function() {  
                $(this).stop().animate({ color: "#FFFFFF"}, 200); 
                },function() {  
                $(this).stop().animate({ color: "#888b8d" }, 200);  
                });  
     }); 
   
   <!-- FADE IN GALLERY LEFT -->
   
   $(document).ready(function(){  
        $(".frameGalleryLeft").hover(function() {  
                $(this).stop().animate({ backgroundColor: "#15191d"}, 300);  
                },function() {  
                $(this).stop().animate({ backgroundColor: "#070d10" }, 300);  
                });  
     }); 
	
	<!-- FADE IN GALLERY RIGHT -->
	
	 $(document).ready(function(){  
        $(".frameGalleryRight").hover(function() {  
                $(this).stop().animate({ backgroundColor: "#15191d"}, 300);  
                },function() {  
                $(this).stop().animate({ backgroundColor: "#070d10" }, 300);  
                });  
     });
	

