$(document).ready(function() {

	//services tabs
	if ($('#process-steps').length>0) {
		$('#process-steps ul').kwicks({max: 250, duration: 300, easing: 'easeOutQuad', complete: 'callback'});
		$('#process-steps ul').css('width', '962px').css('height', '165px');
		$('#process-steps a').hover(
			function() { $(this).children('span').animate({'height':'70px'}, 300, function() { $(this).siblings('small').fadeIn(300); }); },
			function() { $(this).children('span').animate({'height':'43px'}, 300, function() { $(this).siblings('small').fadeOut(); }); }
		);
	}
	
});
