$(window).load(function() {
        $('#slider').nivoSlider();
    });
		
$(document).ready(function(){
 
	$("a.openclose").click(function(){
		$(this).next("div.info").slideToggle("slow")
		.siblings("div.info:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("a.openclose").removeClass("active");
	});

  $("#team").autocomplete(teams, {
    scroll: true,
    selectFirst: false,
    matchContains: true,
    max: 10,
    minChars: 0
  });
 
});
