jQuery.noConflict();
(function($) { 
$(function(){
	var ids = new Array('pre','dataroom','vertalingen','detachering','recruitment');
	$('#navigation > li').each(function(i) { $(this).attr('id',ids[i]) });
	$('#homeboxes > div').each(function(i) { $(this).addClass(ids[i]) });
	
	$('.newstable tr').each(function() {
		if ($(this).find('td:first table tr td a').children('img').length == 0) { $(this).find('td:first').css('padding-right','0');  };
		$(this).find('img').parent().css('padding-right','10px');
	});
	
	$('#navigation > li').mouseover(function() { $(this).addClass('over') }).mouseout(function() { $(this).removeClass('over') });									
	if(($.browser.msie) && ($.browser.version <=6)) {
	}
});
})(jQuery);