(function($){
	$('head').append('<style type="text/css">.details div {position:absolute;left:0;top:0;display:none;}</style>');
	$(function(){
		function reveal(det){
			if(det.css('display') === 'block'){return;}
			$('.details div').stop(true, true).not(det).fadeOut('slow');
			det.fadeIn('slow', fixIEfade);
		}
		var $trigs = $('.triggers div').click(function(){
			reveal($('.details div').eq($trigs.index(this)));
		}), fixIEfade = (function(){/*@cc_on @*//*@if(@_jscript_version >= 5)
			if($.browser.version < 8){
				return function(){
					if(this.style.getAttribute){
						this.style.removeAttribute('filter');
					}
				};
			}@end @*/
			return function(){return;};
		})();
	});
})(jQuery);

