jQuery(function($){
/*
	var $features = $(".feature").hide(),
		index = 0,
		$current = $features.eq(index).show();
	
	setInterval(function(){
		index = (index + 1) % 3;
		console.log($current.height(), $current.width());
		$features.hide().eq(index).show();
	}, 2500);
*/
});
