$(document).ready(function(){
     $('img, .imageflow').bind("contextmenu", function(e) {
                e.preventDefault();
            });
    $('.booking_form').hide();
    $('.booking_form input[name="model"]').val($('.postTitle a').text());
    $('.booking_form select[name="stundenVon"] option[value=20]').attr('selected', 'selected');
    $('.booking_form select[name="stundenBis"] option[value=22]').attr('selected', 'selected');
    $('.booking_form input[name="model"]').val($('.postTitle a').text());
    $('.booking_title').click(function(){
        $('.booking_form').toggle();
    })

})
