
$(document).ready(function() {
	// For homepage
	$('#homepage #feature #cycle').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 10000,
		pager: '#homepage #feature #cyclenav'
	});
	$(".team-hover").hover(function(){
	    $(this).children(".team-details").fadeIn(150);
	},function(){
	    $(this).children(".team-details").fadeOut(10);
	});
	
	//$('#home .cycle').height()
});

