$(function() {  
    $.preloadImage = function(path) {  
        $("#featured img").attr("src", path);  
    }  
  
    $('ul#options li img').click(function() {  
        $('ul li img').removeClass('selected');                       
        $(this).addClass('selected');                                 
  
        var imageName = $(this).attr('alt');                          
        var imageFolder = $(this).attr('name');                          
  
       //$.preloadImage('images/featured/' + imageName);  
       $.preloadImage(imageFolder);  
  
        var chopped = imageName.split('.');                           
        $('#featured h2').remove();
        var blank = " ";
                                                   
        $('#featured')
         .prepend('<h2 class="description">' + chopped[0].replace(/_/g,blank) + '</h2>').children('h2').fadeIn(500).fadeTo(200, .6);  
    });  
  
    $('ul#options li a').click(function() {                           
        return false;  
    });  
}); 