


$(document).ready(function() {
						   
	//alert('');
	$('.tabbar a').click(
	function(){
		tab=$(this).attr('id');
		tab=tab.replace('tab',''); 
	  $('.tabbar a').removeClass('active');
	  $(this).addClass('tab'+tab).addClass('active');
	  $('.leftpane01').hide();
	  $('.fotopane01').hide();
	  $('.leftpane02').hide();
	  $('.fotopane02').hide();
	  $('.leftpane03').hide();
	  $('.fotopane03').hide();
	  $('.leftpane'+tab).show();
	  $('.fotopane'+tab).show();
	  
	})



});
