$(document).ready(function() { //Start up our Featured Project Carosuel
			$('#featured ul').roundabout({
				easing: 'easeOutInCirc',
				duration: 400
			});
			var direccion = 0;
			$("#selecttorRight").click(function(){
				$(".roundabout-moveable-item").each(function(index){
					if($(this).attr("current-scale")==0.5500 && $(this).css("left")=="277.36px" || $(this).css("left")=="277px"){
							$(this).click();
					}
				});
			});	
			$("#selecttorLeft").click(function(){
				$(".roundabout-moveable-item").each(function(index){
					if($(this).attr("current-scale")==0.5500 && $(this).css("left")=="-112.36px" || $(this).css("left")=="-112px" ){
							$(this).click();
					}
				});
			});	
			
		});
