$(document).ready(function() {

	$('a.lightbox').lightBox();
	
	$('.tab-content > div:first').show();
	
	$('.tabs li').click(function(){
		var cur =$(this).attr('class');
		$('.tab-content > div').hide();
		$('#'+cur).show();
	});
	
$.get('http://www.wowprogress.com/guild/eu/azshara/Reincarnation/json_rank/', function(data) {
  $('#tab-1').html(data);
},'json');	

});
