$(document).ready(function() {
	
	$('#tabs_b a').click(function () {
	$('#tabs_b a').removeAttr('class');
	$(this).attr('class','on');
	var a_id = $(this).attr('id');
	var sel_div = '#tab_'+a_id;
	$('#tabs .bdesc').attr('style','display: none;');
	$(sel_div).attr('style','display: block;');
		});
	
	
	$('#tabs_car a').click(function () {
	$('#tabs_car a').removeAttr('class');
	$(this).attr('class','on2');
	});

});
