function loadContent(DIVID,CID){
	//$('#optionsRow').animate({ marginTop:'-216px' }, 100);
	//$('#optionsRowButton a').html('Nieuwe ZOEKopdracht');
	
	$.get("modules/content/content_ajax.php",{ 'ajax_action': 'loadContent', 'id': CID  },
		function(data){
			$('#'+DIVID).html(data+"<BR /><BR />");
			if ($.browser.msie){
        		document.getElementById(DIVID).style.removeAttribute('filter');
			}
		}
	);

}

function sendContact(NAME,EMAIL,MESSAGE){
	$.get("modules/content/content_ajax.php",{ 'ajax_action': 'sendContact', 'name': NAME, 'email': EMAIL, 'message': MESSAGE  },
		function(data){
			$('#contentContactForm').html(data+"<BR /><BR />");
		}
	);	
}
