$(document).ready(function () {
    /*
    * Wat onze klanten vinden
    */

    /* Zoek een p */
    $("p",
    /* Inside de div */
        $('H3:contains("Wat onze klanten vinden")').parent("div").css({
            position: 'relative',
            height: 250
        }).prependTo("#container_content_column_right_small")
    ).css({ width: 250, padding: '1.5em 1em' }).wrap(
    /* wrap de p */
        $("<div />").css(
        {
            background: 'url("/images/referentie_peter_engels.jpg") no-repeat scroll 0 0 transparent',
            height: 235,
            width: 450,
            position: 'absolute',
            left: '-15px'
        })
     );

        $("#mainmenu a:not(.active)").mousedown(function () {
        $(this).parent('li').addClass('mousedown');
    }).bind('mouseup, mouseleave', function () {
        $(this).parent('li').removeClass('mousedown');
    }).mouseover(function () {
        $(this).addClass('hover');
    }).mouseout(function () {
        $(this).removeClass('hover');
    });
    $("#mainmenu a.active").click(function () {
        return false;
    });
});
