﻿$(function(){
   if($('img#src3').attr('src') != '[SRC3]')
   {
        $('div#foto_swap').show();
        $('div#foto_swap a').click(function(){
            $('div#foto_swap a').removeClass('selected');
            $(this).addClass('selected');
            $('div.img img').hide();
            var img =  $('div.img img')[($('div#foto_swap a').index(this))];
            $(img).show();
            return false;
        });
   }  
});