// JavaScript Document
	
	$(document).ready(function(){
	$('#infotabs div').hide(); // Hide all divs
	$('#infotabs div:first').show(); // Show the first div
	$('#infotabs ul li:first').addClass('active'); // Set the class of the first link to active
	$('#infotabs ul li a').click(function(){ //When any link is clicked
	$('#infotabs ul li').removeClass('active'); // Remove active class from all links
	$(this).parent().addClass('active'); //Set clicked link class to active
	var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
	$('#infotabs div').hide(); // Hide all divs
	$(currentTab).show(); // Show div with id equal to variable currentTab
	return false;
	});
	});
	
	$(document).ready(function(){
	$('#searchtabs div').hide(); // Hide all divs
	$('#searchtabs div:first').show(); // Show the first div
	$('#searchtabs ul li:first').addClass('active'); // Set the class of the first link to active
	$('#searchtabs ul li a').click(function(){ //When any link is clicked
	$('#searchtabs ul li').removeClass('active'); // Remove active class from all links
	$(this).parent().addClass('active'); //Set clicked link class to active
	var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
	$('#searchtabs div').hide(); // Hide all divs
	$(currentTab).show(); // Show div with id equal to variable currentTab
	return false;
	});
	});