/*////////////////////////////////////////////////////////////////////////////////////////
services
////////////////////////////////////////////////////////////////////////////////////////
$(function(){

	$('.services div').hide(0);
	$('.services h3').css('cursor', 'pointer');

	$('.services h3').click(function()
	{

		var
			el = this,
			node = $(this).next();

		$('.services h3').each(function(){
			$(this).removeClass('expanded');
		});

		$('.services div').each(function(){
			if( $(this).is(':visible') && $(this).get(0) != $(node).get(0) )
				$(this).slideUp('slow');
		});

		$(node).is(':hidden') ?
		$(node).slideDown('slow', function(){ $(el).addClass('expanded') }) :
		$(node).slideUp('slow', function(){ $(el).removeClass('expanded') }) ;

	});
} ); 
/*/

$(function(){

	$('.clients a span').hide(0);

	$('.clients a img').click(function()
	{

		var
			el = this,
			node = $(this).next();

		$('.clients a img').each(function(){
			$(this).removeClass('expanded');
		});

		$('.clients a span').each(function(){
			if( $(this).is(':visible') && $(this).get(0) != $(node).get(0) )
				$(this).fadeOut('slow');
		});

		$(node).is(':hidden') ?
		$(node).fadeIn('slow', function(){ $(el).addClass('expanded') }) :
		$(node).fadeOut('slow', function(){ $(el).removeClass('expanded') }) ;

	});
} ); 