$(document).ready(function(){
	
	$(".viewcontactdetails a").click(function() {
		if (typeof this.hidden == "undefined") this.hidden = true
		var id = this.getAttribute('href').replace(/#/, '')
		if (this.hidden) {
			$('#'+id).slideDown();
			this.innerHTML = this.innerHTML.replace(/View/, 'Hide');
			this.hidden = false;
		}
		else {
			$('#'+id).slideUp();
			this.innerHTML = this.innerHTML.replace(/Hide/, 'View');
			this.hidden = true;
		}
		return false
	})
})


//onclick=""
