function toggleHomePIShop(){
	var homePIShopReasons = document.getElementById('homePIShopReasons');
	if(homePIShopReasons.style.display != 'block'){
		homePIShopReasons.style.display = 'block';
	}else{
		homePIShopReasons.style.display = 'none';
	}
}
