$(document).ready(function(){
    // Hide all images except the first one
    //$('#features_copy div').hide().filter(':first').show();
    
    //$('#features_copy div').hide().filter('#feat_copy_1').show();
    $('#features_copy div').hide().filter('#feat_copy_1').hide();
    $('#features_copy').css({'border' : '0px'});

    // Select all links
    $('#features_list li').hoverIntent(function(event) {
    	
	    // Get link ID and convert to image ID
	    divId = this.id;
	    copyId = "#" + divId.replace(/feat_icon_/, "feat_copy_");
	    //alert(divId);
        // Hide all images except for the chosen one
    	$('#features_list li').attr('class', '');
        $('#features_list #'+divId).attr('class', 'on');
        $('#features_copy div').hide().filter(copyId).show();
        
        $('#features_copy').css({'border-top' : '1px solid #787E80'});
	    },   
        function () {} // mouseout??
    );
  
    $('#features_list li').mouseout(function(event){
    	// Get link ID and convert to image ID
	    divId = this.id;
	    copyId = "#" + divId.replace(/feat_icon_/, "feat_copy_");
	    // Hide all images except for the chosen one
    	$('#features_list li').attr('class', '');
        $('#features_list #'+divId).attr('class', 'on');
        $('#features_copy div').hide().filter(copyId).hide();
        
   		$('#features_copy').css({'border' : '0px'});
	    }
    );
    
    
});
