(function($){
	$('body .dyb_tabs').each(function(){
		$(this).delegate('ul:first a', 'click', function( evt ) 
			{
				var parent = $(this).parents('.dyb_tabs');
				var ul = parent.find('ul:first');
				ul.find('li').removeClass('on');
				$(this).parents('li').addClass('on');
				parent.find('> * ').not( ul ).hide();
				$( $(this).attr('href') ).show();
				evt.preventDefault();
				// If nyroModal display we need to resize it (as modal is sized to the first tab displayed
				if ($(this).parents('.nyroModalDom').length > 0) {
					$.nmTop().resize(true);
				}
			});
	});
})(jQuery);
