var $j = jQuery.noConflict();


function initTabs(){
	var _fadespeed = 1000;
	jQuery('ul.gallery-tabs').each(function() {
		var _tablinks = jQuery(this).find('a.tab');
		_tablinks.each(function(){
			_curtab = jQuery(this).attr('href');

			if(jQuery(_curtab).length) {
				jQuery(_curtab).addClass('inactive').removeClass('active').css('display', 'none');
				if(jQuery(this).hasClass('active')) jQuery(_curtab).removeClass('inactive').addClass('active').css('display', 'block');
			}

			this.onclick = function(){
				_url = jQuery(this).attr('href');
				_tablinks.each(function() {
					jQuery(jQuery(this).attr('href')).removeClass("active").addClass("inactive").css({'display' : 'none', 'opacity' : '0'});
					jQuery(this).removeClass('active');
				});
				jQuery(_url).removeClass("inactive").addClass("active").css('display', 'block').animate({ opacity: "1"}, _fadespeed);;
				jQuery(this).addClass('active');
				return false;
			}
		});
	});
}
