/*
 * The Brothers Mueller Functions
 * @author Kirk & Nate Mueller (http://www.thebrothersmueller.com)
 *
 */
 
 
$(document).ready(function() {
	
	$(".module").mouseover(function(){
        $(this).stop().animate({backgroundColor: "#515151"}, 300, function(){$('.rounded').corner("5px");});
        
    });

	$(".module").mouseout(function(){
        $(this).stop().animate({backgroundColor: "#1E1E1E"}, 300, function(){$('.rounded').corner("5px");});
    });

});