$(document).ready(function(){
	var texto = "";
	$("#s").focus(function(){
		texto = $(this).val();
		$(this).val("");
	});
	$("#s").blur(function(){
		if (!$(this).val())
		{
			$(this).val(texto);
		}
	});
	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 6000, 
		pager:  '#nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#nav li:eq(' + idx + ') a'; 
		}     
	}); 
});
