$(function(){
	
	$('img.captify').captify({
		speedOver: 'fast', speedOut: '200', hideDelay: 200,	animation: 'always-on',	prefix: '', opacity: '0.7', className: 'caption-bottom', position: 'bottom', spanWidth: '100%'
	});
	
/****************************************************** services - reveal content */

	$('.servicesImg a').click(function(){
		
		$('.currentContent').hide(500).removeClass('currentContent');
		
		$link = '.';
		$link = $link + $(this).attr('class');
		$link = $link + 'Content';
		
		$($link).toggle(500).addClass('currentContent');
		
		return false;
	});	
});
