// JavaScript Document

$(document).ready(function(){
	$('#dialogs').children('div:first').css('display','block');
	$('#coda-nav-1 ul li a').click(function(){							
		var curTabChildIndex = $(this).parent().prevAll().length + 1;
		$('#dialogs').children('div').css('display','none');
		$('#dialogs').children('div:nth-child('+curTabChildIndex+')').css('display','block');
	});
	$('#coda-nav-1 ul li a').click(function(){
		$('.formError').css('display','none');
	});

	if(window.location.href.substr(-1)=="#" || window.location.href.substr(-1)=="/" || window.location.href.substr(-1)=="e" || window.location.href.substr(-1)=="r" || window.location.href.substr(-1)=="x"){
		$('#dialogs').children('div').css('display','none');
		$('#dialogs').children('div:nth-child(1)').css('display','block');
	} else {
		$('#dialogs').children('div').css('display','none');
		$('#dialogs').children('div:nth-child('+window.location.href.substr(-1)+')').css('display','block');
	}
	
});
