$(document).ready(function() {
    $('textarea.expanding').autogrow();
    $('.visual .cycle').cycle();
    $('.action-iframe').colorbox({width:'760px;', height:'90%;', iframe:true, close:'venster sluiten' });

    if ( ($('.content').html().replace(/(^[\s\xA0]+|[\s\xA0]+$)/g, '').toUpperCase().indexOf('<H2>')) == 0) {
        $('.content').find('h2').first().addClass('first');
    }

    $('.cars .car').mouseover(function() {
        $(this).find('.info').show();
    }).mouseout(function(){
        $(this).find('.info').hide();
    });

});
