	$(document).ready(function(){
						$('#tabs div.panel').hide();
						$('#tabs div.panel:first').show();
						$('#tabs ul li:first').addClass('active');
						$('#tabs ul li a').click(function(){
						$('#tabs ul li').removeClass('active');
						$(this).parent().addClass('active');
						var currentTab = $(this).attr('href');
						$('#tabs div.panel').hide();
						$(currentTab).show();
						return false;
});
});
