$(document).ready(function() {
                    $("#imagegallerythumb a").click(function(event) {
                                                
                                    event.preventDefault();
                                    var image = $(this).attr("href");
                                    $("img#placeholder").attr("src", image);
                                    var description = $(this).attr("title");
                                    $("#desc").empty();
                                    $("#desc").append(description);
                                                                });
                    
                                   
        });

