$(document).ready(function(){
						   
	$('.sitiosInicio').fadeIn(1000);
	
	$('.sitiosGal img:first-child').fadeIn(1000, function() {
		$('.sitiosGal').cycle({
			fx: 'scrollHorz'
		});
    });

	$('.grupoGal').cycle({
		timeout:100
	});
	
	$(function() {
		$("#menu a").addClass('ui-corner-all');
	});
	
	$("form.validate").validate();
	
	$('.slideshow').each(function(){
		var $this = $(this);
		$this.after('<ul class="nav '+this.id+' horizontal">').cycle({ 
			speed:  'fast', 
			timeout: 0, 
			pager:  '.'+this.id, 
			pagerAnchorBuilder: function(idx, slide) {
				return '<li><a href="#"><img src="../img/sitios/trabajos/'+slide.alt+'/s'+(idx+1)+'.jpg" class="reflex" /></a></li>'; 
			} 
		});
	});
	
	$('#tabLink').toggle(
	  function () {
		$('#contactTabber').animate({ marginLeft: 0 });
		$('#contactoTabImg').attr('src','img/contactoTabC.png');
	  },
	  function () {
		$('#contactTabber').animate({ marginLeft: '-293px' });
		$('#contactoTabImg').attr('src','img/contactoTab.png');	
	  }
	);
			
	
});