	function scrollleft(){
		$("div#hscroll").smoothDivScroll("startAutoScroll");
		$("div#hscroll").smoothDivScroll("option","autoScrollDirection","left");
		$("div#hscroll").smoothDivScroll("option","autoScrollStep",5);
		$("div#hscroll").smoothDivScroll("option","autoScrollInterval",15);
	 }
	 function scrollright(){
		 $("div#hscroll").smoothDivScroll("startAutoScroll");
		 //$("div#hscroll").smoothDivScroll("moveToElement", "number", 2);
		 $("div#hscroll").smoothDivScroll("option","autoScrollDirection","right");
		 $("div#hscroll").smoothDivScroll("option","autoScrollStep",5);
		 $("div#hscroll").smoothDivScroll("option","autoScrollInterval",15);
	 }
	 function stopscrolling(){
		 $("div#hscroll").smoothDivScroll("stopAutoScroll");
	 }

	$(document).ready(function(){		
		
		$('#banneranimation').cycle({
			speed: 2000,
			timeout: 6000
		});  
	
	    if( $('.listEntryTeam.selected').length != 0 ){
			$('.listEntryTeam').not('.listEntryTeam.selected').stop().animate({"opacity": "0.50"}, 0);
			$(".listEntryTeam:not(.selected)").hover(	
				function () {
					$(this).stop().animate({"opacity": "1"}, "fast");
				},
				function () {
					$(this).stop().animate({"opacity": "0.50"}, "fast");
				}
	  		);
		}else{				
			$(".listEntryTeam").hover(
				function () {
					$('.listEntryTeam').not(this).stop().animate({"opacity": "0.50"}, "fast");
				},
				function () {
					$('.listEntryTeam').not(this).stop().animate({"opacity": "1"}, "fast");
				}
			);				
		}
	});
