$(document).ready(function(){	
	
	/*jQuery.facebox("<p style='margin: 0px; padding: 0px; text-align: left; font-size: 14px; line-height: 25px;'>La REDIJ se solidariza con todo el pueblo haitiano y llama a todos los estado y organizaciones a movilizarse en apoyo a Haití, especialmente envia un mensaje de fuerza y ánimo a sus integrantes del país.</p>");*/
	
	var searchLabel = "Buscar en el sitio";
	
	$("#twitter").getTwitter({
					userName: "redij",
					numTweets: 5,
					loaderText: "Cargando tweets...",
					slideIn: true,
					slideDuration: 750,
					showHeading: true,
					headingText: "",
					showProfileLink: true,
					showTimestamp: true
				});
	
	$("#slideri").easySlider({
		prevText: '',
		nextText: '',
		speed: 2000,				
		auto: true,
		continuous: true 
	});
	
	$('#input_search').addClass('buscar').val(searchLabel).focus(function() {
  		if (this.value == searchLabel) {
     		$(this).val('');
  		};
	}).blur(function() {
  		if (this.value == '') {
     		$(this).val(searchLabel);
  		};
	});
});

