//var COL = jQuery.noConflict();

$(document).ready(function(){
	/* tabs */
	$('.tab-box').find('.noscript').hide();
	$($('a.active').attr('href')).show();
	/* end tabs */
});


$(function () {

	/* tabs */
	$('.tabs > li > a').click(function() {
		$($('a.active').attr('href')).hide();
		$('a.active').removeClass('active');
		$(this).addClass('active');
		$($(this).attr('href')).fadeIn('2000');
		return false;
	});
	/* end tabs */
	
});

