$(document).ready(function() {
    $(document).pngFix();
    $("#navigation ul li").hover(function() {
        $(this).children("ul").show();
    }, function() {
        $(this).children("ul").hide();
    })
    $(".thumbnails a").click(function(e) {
        e.preventDefault();
        $(".target_img").attr("src", $(this).attr("href"));
    });
})
