$(document).ready(function(){
    $("div#sorteerHolderkeView a").click(function(){
        $("div#sorteerHolderkeView a").removeClass("active").addClass("non-active");
        $(this).addClass("active").removeClass("non-active");
        return false;
    });

    $("div.gallcell div.galpictwrap, div.gallcell a.details, div.gallcell a.leesmeer").mouseover(function(){
        $(this).closest("div.gallcell").addClass("imageHoverke");
    });
    $("div.gallcell div.galpictwrap, div.gallcell a.details, div.gallcell a.leesmeer").mouseout(function(){
        $(this).closest("div.gallcell").removeClass("imageHoverke");
    });

    $("#listView").click(function(){
        window.location.search = jQuery.query.set("display", "list");
    });

    $("#galView").click(function(){
        window.location.search = jQuery.query.set("display", "gallery");
    });

    $("#mapView").click(function(){
        window.location.search = jQuery.query.set("display", "map");
    });
});

