$(document).ready(function(){

	$('.tabContent').hide();
	var tabContentFirst = $('.tabs span:first').find('a').attr('href');
	$(tabContentFirst).show();
	$('.tabs span:first').addClass('active');
	
	$(".tabs span").click(function() {
		
		$(".tabs span").removeClass('active');
		$(this).addClass('active');
		$(".tabContent").hide();

		var activeTab = $(this).find('a').attr('href');
		$(activeTab).show();
		
		return false;
	});
	
	$("#searchText").focus();
	
	if (window.location.hash) {
		var hash = window.location.hash;
		$(".tabs span a[href]").map(function() {
			var mapTab = $(this).attr('href');
			if (hash == mapTab) {
				$(this).click();
			}		 			
		})
	}
	
	$(".code").click(function() {
		
		$(".code").select();
	});
});
