/**
 * @author bastianw
 */


$(document).ready(function() {
	
	var i = 0;
	$('#content-container .standardContainer').each(function() {
		if(i === 0) {
			$(this).addClass('moreinfoNavigation');
		}
		if(i === 1) {
			$(this).addClass('jobsStandardContent');
		}
	
		i++;
	})
	
	i = 0;
	$('#content-container .boxprio2v5_405').each(function() {
		if(i === 1)
			$(this).addClass('lastElementInRow');
			
		i++;
	});
});


