$(function () {
$("input#master_search").autocomplete("/extras/search/mysql_master.php", {	width: 230, max:50, minChars: 2  });
$("input#doctorate_search").autocomplete("/extras/search/mysql_doctorate.php", {	width: 230, max:50, minChars: 2  });
$('.news').css({height:'95px'}).before('<dd id="newsnav"></dd>').cycle({fx: 'fade',timeout:5500,pause:1,cleartype:0,pager:'#newsnav'});
$('#slideshow').cycle({ fx: 'fade', timeout:5500, before:onBefore }); 
var totalSlideCount = 11; 
function onBefore(curr, next, opts) { if (!opts.addSlide) return; 
var currentImageNum = parseInt(next.src.match(/spain(\d)/)[1]); 
if (currentImageNum == totalSlideCount) { opts.addSlide = null; return; } 
opts.addSlide('<img src="images/slideshow/spain'+(currentImageNum+1)+'.jpg" width="315" height="285" />'); }; 
});	