  $(document).ready(function(){
    
    $("#logogoat").mouseenter(function () {
      $("#logotype").show("fast");
    });
	$("#logogoat").mouseleave(function () {
	  $("#logotype").hide();
	});

$(".braunnum a").click(function(){
        var imgHref = $(this).attr('href');  //get the src of the thumbnail
        $(".braunnum a").removeClass("highlight");  //remove .selected class from all other links
        $(this).addClass("highlight");  //add .selected class to current link
        $("#workphoto").stop();
        $("#workphoto").stop().fadeTo(700, 0, function() {  //fade image out
            $('#workphoto').attr('src',imgHref);  //give new image a src attribute
        }).fadeTo("slow", 1);  //fade the image in
        },function(){    //for onmouseout not used here
    });

  });
