// Zeigt den Entsprechenden Content an
function showProductContent(id) {
	// ID in eine Zahl wandeln
	id = id*1;
	
	// Wechselt die Display States
	for(var i = 1; i <= 3; i++) {
		if(i == id) {
			document.getElementById('product_content_'+i).style.display = 'block';
			document.getElementById('product_link_'+i).className = 'active';
		} else {
			document.getElementById('product_content_'+i).style.display = 'none';
			document.getElementById('product_link_'+i).className = '';
		}
	}
	
	// Zentriert auf Seite 2 die Navigation
	pagelinksReviewCenter();
}

function pagelinksReviewCenter() {
	// Zentriert auf Seite 2 die Navigation
	var pagelinksw = $('#pagelinks').width();
	var productw = 498;
	var leftpadding = ((productw - pagelinksw)/2);
	$('#pagelinks').css('margin-left',leftpadding+'px');
}
