$(document).ready(function(){

	my_smothscroll();

	$("#clientlist").jFlow({
		slides: "#clientslides",
		controller: ".jFlowControl",
		slideWrapper : "#jFlowSlide",
		selectedWrapper: "jFlowSelected",
		width: "100%",
		height: "450px",
		easing: "easeInOutQuad",
		duration: 400,
		interval: 5000,
		prev: ".jFlowPrev",
		next: ".jFlowNext"
	});


	$('div#clientselect div.panel').hover(function()
	{
		//$(this).animate({ opacity: '1.0' },200);
		$(this).find('a span.clienthover').stop().animate({ bottom: '0px' },300, 'easeOutSine');
	}, 
	function(){
		//$(this).animate({ opacity: '0.0' },200);
		$(this).find('a span.clienthover').stop().animate({ bottom: '-180px' },300, 'easeOutBounce');
	});




});