function showhide(id) {
	var id =  document.getElementById('userVideos');
	var id2 = document.getElementById('blubtitle');
	if(id.style.display == 'none') {
		id.style.display = 'block';
		id2.setAttribute("class", "hdab3");
	} 
	else {
		id.style.display = 'none';
		id2.setAttribute("class", "hdab2");
	}
}


function showhide1(id) {
	var id =  document.getElementById('userVideos1');
	var id2 = document.getElementById('blubtitle1');
	if(id.style.display == 'block') {
		id.style.display = 'none';
		id2.setAttribute("class", "hdab2");
	} 
	else {
		id.style.display = 'block';
		id2.setAttribute("class", "hdab3");
	}
}