$(function() {           
	$("#menu li:not(.active) a")
        .hover(function() {                    	                    
        					    
		    // Animate the button background             
            $(this).parent().children("div").stop(true,true).fadeIn("fast");                                             
            
            // Animate the text color 												
			$(this).stop(true,true).animate({color: "#fff"}, 200);						
									
        },function() {
        	// Animate the button background back
            $(this).parent().children("div").stop(true,true).fadeOut("fast");
           	
           	// Animate the text color back.
			$(this).stop(true,true).animate({"color": "#000000"}, 350);
            
        });
   	$(".articleRow")
   		.mouseenter(function(){                			        			
   			$(this).children("div.articleBg").stop(true,true).fadeIn("fast");
   			$(this).stop(true,true)
   				.animate({"border-color": "#a81a00"}, 350);   
   			$(this).children("div.articleBarInfo").children("div.articleBarTitle").children("h3").children("a").stop(true,true).animate({"color": "#ffffff"}, 200);		
   			$(this).children("div.articleBarInfo").stop(true,true).animate({"color": "#ffffff"}, 200);  
   			$(this).children("div.articleBarInfo").children("div.articleBarMeta").children("a").stop(true,true).animate({"color": "#ffffff"}, 200); 
   		    $(this).children("div.articleBarInfo").children("img").stop(true,true).animate({"border-color": "#a81a00"}, 350);                    

   		})
   		.mouseleave(function(){
   			$(this).children("div.articleBg").stop(true,true).fadeOut("fast"); 
   			$(this).stop(true,true)
   				.animate({"border-color": "#d1d1d1"}, 350);     
   			$(this).children("div.articleBarInfo").children("div.articleBarTitle").children("h3").children("a").stop(true,true).animate({"color": "#000000"}, 350);		          				
   			$(this).children("div.articleBarInfo").stop(true,true).animate({"color": "#000000"}, 350); 
   			$(this).children("div.articleBarInfo").children("div.articleBarMeta").children("a").stop(true,true).animate({"color": "#000000"}, 350);  
   			$(this).children("div.articleBarInfo").children("img").stop(true,true).animate({"border-color": "#d1d1d1"}, 350);                        
   		});
   	$(".row")
   		.mouseenter(function(){                			        			
   			$(this).children("div.listBg").stop(true,true).fadeIn("fast");
   			$(this).stop(true,true)
   				.animate({"border-color": "#a81a00"}, 350);                  			
   			$(this).children("a").stop(true,true).animate({"color": "#ffffff"}, 200);                         

   		})
   		.mouseleave(function(){
   			$(this).children("div.listBg").stop(true,true).fadeOut("fast"); 
   			$(this).stop(true,true)
   				.animate({"border-color": "#d1d1d1"}, 350);     
   			$(this).children("a").stop(true,true).animate({"color": "#000000"}, 350);		          				               			                          
   		});
   	$(".lastRow")
   		.mouseenter(function(){                			        			
   			$(this).children("div.listBg").stop(true,true).fadeIn("fast");
   			$(this).stop(true,true)
   				.animate({"border-color": "#a81a00"}, 350);                  			
   			$(this).children("a").stop(true,true).animate({"color": "#ffffff"}, 200);                         

   		})
   		.mouseleave(function(){
   			$(this).children("div.listBg").stop(true,true).fadeOut("fast"); 
   			$(this).stop(true,true)
   				.animate({"border-color": "#d1d1d1"}, 350);     
   			$(this).children("a").stop(true,true).animate({"color": "#000000"}, 350);		          				               			                          
   		});
 });
