	var my_Timer;
	function showBrowsePortfolio(){
		clearTimeout(my_Timer);
		document.getElementById('browse-portfolio').style.display='block';
	}
	function hideBrowsePortfolio(){
		my_Timer = setTimeout(function () {document.getElementById('browse-portfolio').style.display='none';},100);
	}
