$(document).ready(function(){
	//FECHA
	function makeArray() {
		for (i = 0; i<makeArray.arguments.length; i++)
		this[i + 1] = makeArray.arguments[i];
	}
	
	var months = new makeArray('Enero','Febrero','Marzo','Abril','Mayo',
	'Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre');
	var date = new Date();
	var day = date.getDate();
	var month = date.getMonth() + 1;
	var yy = date.getYear();
	var year = (yy < 1000) ? yy + 1900 : yy;
	$('#fecha_container p').text(day+' de '+months[month]+' de '+year);
	
	//Pre Footer Dropshadow
	$('.preFootBox').dropShadow({opacity:0.2});
	$('#sectContent').dropShadow({opacity:0.5,top:1,left:0});
	$('#servsContent').dropShadow({opacity:0.5,top:1,left:0});
	$('#electContent').dropShadow({opacity:0.5,top:1,left:0});
	$('#notTecContent').dropShadow({opacity:0.5,top:1,left:0});
	$('#clientesContent').dropShadow({opacity:0.5,top:1,left:0});
	$('#pasosContent').dropShadow({opacity:0.5,top:1,left:0});
	$('#recoContent').dropShadow({opacity:0.5,top:1,left:0});
	//Relojes
	$(function($) {
		var optionArg = { utc: true,utc_offset: -3 }
			$('#timeArg').jclock(optionArg);
		var optionEsp = { utc: true,utc_offset: 2 }
			$('#timeEsp').jclock(optionEsp);
    });
	//orange overlay
	$('#orangeOverlay').css("opacity", 0.2);
	
	//Servicios
	$('.servsListContainer ul li:last-child').css({'background':'none','padding-left':'0'});
	$('.otrosServsContainer ul li:last-child').css({'background':'url(imgs/mini_bullet.jpg) 0px 6px no-repeat','padding':'0 0 0 10px'});
	
	// PASO A PASO
	$('#go_next_fase2').click(function(){
		$('#pasosContainer').animate({marginLeft:-1100},{duration:400,easing:'easeOutBack'});
		$('#orangeOverlay')
			.animate({top:181,height:10},{duration:100,easing:'easeOutQuad'})
			.animate({left:440,width:150},{duration:100})
			.animate({top:127,height:110},{duration:500,easing:'easeOutElastic'});
	});
	$('#go_next_fase3, #paso7, #paso8, #paso9').click(function(){
		$('#pasosContainer').animate({marginLeft:-2200},{duration:400,easing:'easeOutBack'});
		$('#orangeOverlay')
			.animate({top:181,height:10},{duration:100,easing:'easeOutQuad'})
			.animate({left:700,width:168},{duration:100})
			.animate({top:127,height:110},{duration:500,easing:'easeOutElastic'});
	});
	$('#go_back_fase2').click(function(){
		$('#pasosContainer').animate({marginLeft:-1100},{duration:400,easing:'easeOutBack'});
		$('#orangeOverlay')
			.animate({top:181,height:10},{duration:100,easing:'easeOutQuad'})
			.animate({left:440,width:150},{duration:100})
			.animate({top:127,height:110},{duration:500,easing:'easeOutElastic'});
	});
	$('#go_back_fase1, #paso1, #paso2').click(function(){
		$('#pasosContainer').animate({marginLeft:0},{duration:400,easing:'easeOutBack'});
		$('#orangeOverlay')
			.animate({top:181,height:10},{duration:100,easing:'easeOutQuad'})
			.animate({left:187,width:152},{duration:100})
			.animate({top:127,height:110},{duration:500,easing:'easeOutElastic'});
	});
	$('#paso3, #paso4, #paso5, #paso6').click(function(){
		$('#pasosContainer').animate({marginLeft:-1100},{duration:400,easing:'easeOutBack'});
		$('#orangeOverlay')
			.animate({top:181,height:10},{duration:100,easing:'easeOutQuad'})
			.animate({left:440,width:150},{duration:100})
			.animate({top:127,height:110},{duration:500,easing:'easeOutElastic'});
	});

});