window.addEvent('domready', function()
{

  if (window.location.search.indexOf('iso=') != -1 && window.location.hash == '') {
    window.location += '#translations';
  }
  /*
  if (Browser.Engine.trident) {
    return;
  }
  */
	if ($('catalog_group') != null) {
            var items = $('catalog_group').getElements('div.item');
            var des2 = $('catalog_group').getElements('div.beschreibung');
		$('catalog_group').getElements('div.item').each(function(el) {
			var des = el.getChildren('div.beschreibung');

                       

			el.addEvent('click', function(e) {
                            items.removeClass('active');
                            des2.removeClass('active');
                            el.addClass('active');
                            des.addClass('active');
			});
   
		});
	}
});



