$(document).ready(function(){
	$('.desc').children('div').each(function(){
		$(this).hide('slow');
	});
	
	$('.show-desc').click(function(){
		
		$('.desc').find('img.arrow-image').each(function(){
			$(this).attr('src', '/smt/user/images/ArrowRight.gif');
		});
		
		$(this).parent().children('div').each(function(){
			$(this).hide('slow');
		});
		
		$(this).next('div').show('slow');
		$(this).find('img.arrow-image').attr('src', '/smt/user/images/ArrowDown.gif');
	});
});

