$(document).ready(function() {

	if (window.location.hash != null)
	{
		var hash = window.location.hash;
	}

	if( hash.length >= 1  ) {
		var str = hash.substring(2);
		$('#'+str).click();
	}
	
	//alert(hash);
	//alert(str.substring(2));
});

function getLocationHash(){
	alert(window.location.hash);
}

function setLocationHash(value){
	window.location.hash = "0"+value;
}