$(document).ready(function() {
	$("#cajitsFotits").carousel({autoSlide: true, loop: true, autoSlideInterval: 4000});
	
	$('ul#sliderObjetivos').innerfade({
        animationtype: 'fade',
        timeout: 8000,
        type: 'sequence',
		containerheight: '360px'
    });

	//contacto:
	function animarInput(elm) {
		var Gcolors = new Array("#f89f22", "#b8d431", "#a25ba3", "#64cceb");
	    var l = Gcolors.length;
	    var rnd_color = Math.floor(l*Math.random());
		$(elm).animate({'background-color': Gcolors[rnd_color]},300);
	}
	
	//----------------------Sidebar search------------------------------
	$('#search input[type="text"]').focus(function() {
		
		if (this.value == this.defaultValue) {
		    this.value = '';
		}
		
		animarInput(this);
		$(this).css({'color':'#ffffff'});
	});

	$('#search input[type="text"]').blur(function() {
		
		if (this.value == '') {
			this.value = this.defaultValue	;
		}
		
		$(this).animate({'background-color':'#dddddd'},150);
		$(this).css({'color':'gray'});
	});
	
	//------------------------------------------------------------------
	
	/*$("input[name^='your-name']").attr("value","Nombre");
	$("input[name^='your-email']").attr("value","e-Mail");
	$("input[name^='your-subject']").attr("value","Asunto");
	$("textarea[name^='your-message']").attr("value","Tu Mensaje");*/
	$("textarea[name^='your-message']").attr('rows', '5');
	
	$('.contacto div.wpcf7 input[type="text"], .contacto div.wpcf7 textarea').focus(function() {

		//var default_value = $(this).val();
		
		if (this.value == this.defaultValue) {
		    this.value = '';
		}
		
		animarInput(this);
	});

	$('.contacto div.wpcf7 input[type="text"], .contacto div.wpcf7 textarea').blur(function() {
		
		//var default_value = $(this).defaultValue;
		
		if (this.value == '') {
			this.value = this.defaultValue	;
		}
		
		$(this).animate({'background-color':'#dddddd'},150);
	});
	
});//Cierra $(document).ready();
