$(function() {
/////////////////////////////////////////////////////
/// build info ///
/////////////////////////////////////////////////////
	$('.ENQUIRYTYPEjs').live('click', function() {
		var container=$(this).parent().next();
		var value=$(this).parent().next().attr('id');
		$('.contact-form p').removeClass('selected');
		$(this).parent().parent().addClass('selected');
		$('.contact-form .enquiry-type').hide();
		if(value=="experience-wrapper"){
			$(container).empty().show().load('http://'+window.location.hostname+'/en/index/plug-contentcontactFormExperiences');
		} else if(value=="venue-wrapper"){
			$(container).empty().show().load('http://'+window.location.hostname+'/en/index/plug-contentvenuesListSelect_listNr-1000');
		} else if(value=="activity-wrapper"){
			$(container).empty().show().load('http://'+window.location.hostname+'/en/index/plug-contentactivityListSelect');
		} else if(value=="multi-activity-wrapper"){
			$(container).empty().show().load('http://'+window.location.hostname+'/en/index/plug-contentsearchSelectActivity');
		}
	});
/////////////////////////////////////////////////////
});
