(function($){
	var $panels = $('.panels .panel');
	var $tabs = $('.tabs li');
	var switchtab = function() {
		$panels.hide();
		$tabs.removeClass('current');
		$this = $(this);
		$panels.filter('#'+$this.attr('rel')).show();
		$this.closest('li').addClass('current');
		return false;
	}
	
	$panels.hide().first().show();
	$tabs.first().addClass('current');
	$('.tabs li a').click(switchtab);
	$('.panels').click(function(){
		window.open('/wp-content/themes/eloy/img/carte-revendeurs.png', 'carte', 'width=850,height=800,menubar=no,location=no,toolbar=no,personalbar=no,status=no');
	});
})(jQuery);
