//jQuery.noConflict();

$(document).ready(function() {
	$('a.applyParamsForExternal').each(function() {
		var href = $(this).attr('href');
		if ( href.indexOf('#') > -1 ) {
            $(this).attr('href', href.split('#')[1]);
		}
	});
	
	$('ul.cN-tabBox li h4').click(function() {
		var img = new Image();
		img.src = $('a', this).attr('href') + '?rand=' + Math.floor(Math.random() * 10000);
		// Show selected tab then hide others.
		$(this).parent().addClass('selected').siblings().removeClass('selected');
		//Stop event propagation.
		return false;
	});
		
	// Hide non selected tabs if JS enabled.
	$('ul.cN-tabBox').removeClass('accessibleTab');
});