jQuery(document).ready(function() {
	
	if ($("#feedsmall").length > 0){
		$.get(_root+'pages/home-vacature.asp', function(data){
			$('#feedsmall .content').append(data);
			$('#feedsmall .content').css({'background':'none'});
		});
	}
	
	if ($("#feedlarge").length > 0){
		$.get(_root+'pages/detail-vacature.asp', function(data){
			$('#feedlarge .content').append(data);
			$('#feedlarge .content').css({'background':'none'});
		});
	}
});	
