
var currentAnchor = "";

function checkAnchor(){
	 
    if (document.location.hash!='#ticketAnchor' && currentAnchor != document.location.hash ) {
        //alert(document.location.hash)
        currentAnchor = document.location.hash;
        
		if (currentAnchor != '') {
                    
			arr = currentAnchor.split('-');
			//alert(arr);
			OddsBetType(arr[0].substring(1),arr[1],arr[2]);
		}
		else
			history.go(0);
		
    }
}

$().ready(function(){
    setInterval("checkAnchor()", 400);
});
