function position_elements(){
	var new_x = ($(window).width() - $("#imac").width()) / 2;
	var new_y = (($(window).height() - $("#imac").height()) / 2) + 50;
	$("#imac").css({
		"left":new_x,
		"top":new_y
	});
	
	var new_x = ($(window).width() - $("#portfolio_holder").width()) / 2;
	var new_y = (($(window).height() - $("#portfolio_holder").height()) / 2) - 60;
	$("#portfolio_holder").css({
		"left":new_x,
		"top":new_y
	});
	
	var new_x = (($(window).width() - $("#right").width()) / 2) + 358;
	var new_y = (($(window).height() - $("#right").height()) / 2) -50;
	$("#right").css({
		"left":new_x,
		"top":new_y
	});
	
	var new_x = (($(window).width() - $("#left").width()) / 2) - 365;
	var new_y = (($(window).height() - $("#left").height()) / 2) -50;
	$("#left").css({
		"left":new_x,
		"top":new_y
	});
	
	var new_x = (($(window).width() - $("#launch").width()) / 2) + 232;
	var new_y = (($(window).height() - $("#launch").height()) / 2) - 197;
	$("#launch").css({
		"left":new_x,
		"top":new_y
	});
}

$(document).ready(function(){
	position_elements();
	$(window).resize(function(){
		position_elements();
	});
});
