//show products
function showProducts(){
	$('#tabs-store').hide();
	$('#tabs-product').show();
	$('#tabs .first a').addClass("selected");
	$('#tabs .second a').removeClass("selected");
}

//show stores
function showStores(){
	$('#tabs-store').show();
	$('#tabs-product').hide();
	$('#tabs .first a').removeClass("selected");
	$('#tabs .second a').addClass("selected");
}

//on load
$(document).ready(function() {
	showProducts();   	

	$("#tabs .second a").click(function() {
		showStores();
		return false;
	});
	
	$("#tabs .first a").click(function() {
		showProducts();
		return false;
	});
});