jQuery(document).ready(function() {
    
    // top section click hack
    jQuery('#roundabout > li h4:contains("Step")').parents('li').click(function() {
        window.location = "http://esgreenville.com/information/get-started/"
        return false;
    });
    
    jQuery('#roundabout > li h4:contains("Claims")').parents('li').click(function() {
        window.location = "http://esgreenville.com/information/claims/"
        return false;
    });
    
    jQuery('#roundabout > li h4:contains("Wind")').parents('li').click(function() {
        window.location = "http://esgreenville.com/information/storms/recent-storms/"
        return false;
    });
    
    
    // top section on hover change border color
    var $hoverColor = jQuery('#roundabout li').css('backgroundColor');
    
    jQuery('#roundabout li').hover(function(e) {
        jQuery(this).hoverFlow(e.type, {backgroundColor: '#eceaeb'}, {
            duration: 500, 
            complete: function() {
                //$(this).find('.more-btn').animate({opacity: 1} , 150);
            }
        });
    }, function(e) {
       //jQuery(this).find('.more-btn').hoverFlow(e.type, { opacity: 0 }, 200);
       jQuery(this).hoverFlow(e.type, {backgroundColor: $hoverColor}, {
            duration: 750, 
            complete: function() {
               //$(this).find('.more-btn').animate({opacity: 0}, {duration:100, queue: false})             
            }
        });
    })
    
    
    
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
        
        
}); // end dom ready

