jQuery.noConflict();

function closeContact(id)
{
jQuery('div#'+id).slideUp('slow');
jQuery('div#inhoud'+id).slideDown('slow');

}

jQuery(document).ready(function(){
var url='http://www.antiquewarehouse.nl/';
//var url='http://localhost/antiquewarehouse/';

jQuery(".reserveren a").click(function () {
jQuery('div.contact').hide(); 
  jQuery('div.inhoud').show(); 
  var id=jQuery(this).attr('rel');
        jQuery('div#inhoud'+id).slideUp('slow');
    jQuery.post(url+"ajax/contact/", {id: id},
    function(data){
		setTimeout(function() {
		jQuery('div#'+id).html(data);
							},1000);
		jQuery('div#'+id).slideDown('slow');
    });
  });

});