﻿$(function() {


    $('ul#options li img').click(function() {
        $('ul#options li img').removeClass('selected');
        $(this).addClass('selected');

        var imageName = $(this).attr('alt');

        $('#featured img').attr('src', 'photos/services/' + imageName);


    });

    $('ul#options li a').click(function() {
        return false;
    });
});