$().ready( function(){

$domestic = $('#t-domestic a');
$shop = $('#t-shop a');
$nonDomestic = $('#t-non-domestic a');
$tabs = $('#tabs');

$('#domestic').hide();
$('#non-domestic').hide();

$domestic.click(function() {
	$tabs.removeClass();
	$tabs.addClass('domestic');
	contentFade('#domestic');

});

$shop.click( function() {
	$tabs.removeClass();
	$tabs.addClass('shop');
	contentFade('#shop');
});

$nonDomestic.click( function() {
	$tabs.removeClass();
	$tabs.addClass('non-domestic');
	
	contentFade('#non-domestic');
})

function contentFade($target) {
	$target = $($target);
	$('#content .current').fadeOut('fast',function() {
		$(this).removeClass();
		$target.fadeIn().addClass('current');
	});
}

});