// JavaScript Document


function switchOnPortfolioPreview() {
	var portfolioAttributes = document.getElementById('portfolioPreview');
	portfolioAttributes.style.display='block';
	}

function switchOffPortfolioPreview() {
	var portfolioAttributes = document.getElementById('portfolioPreview');
	portfolioAttributes.style.display='none';
	}


function switchOnPortfolioPreview2() {
	var portfolioAttributes = document.getElementById('addictedPreview');
	portfolioAttributes.style.display='block';
	}

function switchOffPortfolioPreview2() {
	var portfolioAttributes = document.getElementById('addictedPreview');
	portfolioAttributes.style.display='none';
	}
	

function switchOnPortfolioPreview3() {
	var portfolioAttributes = document.getElementById('taPreview');
	portfolioAttributes.style.display='block';
	}

function switchOffPortfolioPreview3() {
	var portfolioAttributes = document.getElementById('taPreview');
	portfolioAttributes.style.display='none';
	}
