$(document).ready(function() {
	
	$("#features ul li").hover(function() {
		$(this).find(".countGray").animate({
			top:"-105px"
		}, 200);
		$(this).find(".countDark").animate({
			top:"-5px"
		}, 200);
	}, function() {
		$(this).find(".countGray").animate({
			top:"0px"
		}, 200);
		$(this).find(".countDark").animate({
			top:"105px"
		}, 200);
	});
	
	$('#worksSlider').tinycarousel({
		start:2,
		display:1	
	});
	
	$('#testimonialSlider').tinycarousel({
		axis:'y',
		controls:false,
		interval:true,
		intervaltime:5000
	});
	
	$("#worksSlider .overview li a").hover(function() {
		$(this).children("img.zoomIcon").fadeTo(200, .7);
	}, function() {
		$(this).children("img.zoomIcon").fadeTo(200, 0);
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
});
