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

