		
	(function($){
		tabs = function () {
		$(".content").hide();
		$("div#visitus").hide();
		$(".tabscontents").hide();
				
		$("li span.file").click(function(){
			
		$("div#content").show();
		$("div#visitus").hide();
		$(".tabscontents").hide();

	
		});
		
		$("a#emailus").click(function(){
			
		$("div#content").show();
		$("div#visitus").hide();
		$(".tabscontents").hide();

	
		});
		
		$("#visitus").click(function(){
		$(".tabscontents").show();
		$("div#content").hide();
		$(".tabs ul li").removeClass("active");
		$(".content").hide();


		$(".tabs ul li:first").addClass("active").show();
		$("#info").fadeIn(450);
			return false;

		});
		
			$(".tabs ul li").click(function(){
			$(".tabs ul li").removeClass("active");
			$(this).addClass("active").show();
	  		$(".content").hide();

			
			var currentTab = $(this).find("a").attr("href"); //currentTab will hold the id inside the href which'll reflect the content id
			
			$(currentTab).fadeIn(500);
			return false;
		});
		


		};
})(jQuery);		


