$(document).ready(function() {

   

    $('.thumbs').click(function() {
        $('.LargeView').fadeIn('fast');
        $('.LVimg img').fadeIn('fast');
        var n = $(this).attr("n");
        $(".LVimg img").attr("src", "images/ss" + n + ".png");
    });

    $('.LargeView').click(function() {
        $(this).fadeOut('fast');
        $(".LVimg img").attr("src", "images/spacer.gif");
    });
});
