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

