/* Index page */
;$(document).ready(function(){
	$('.showcase dt a').mouseover(function(){
		var 
			active=$(this).parent(),
			prevActive=active.siblings('.active');
		active.siblings().removeClass('active').end().next('dd').andSelf().addClass('active');
		var fadeIn=function(){
			active.next('dd').fadeIn('fast',function(){			
				});
			}
		
		});
	});