$(document).ready(function(){	
		$("#slider").easySlider({
			auto: true,
			speed: 1500,
			pause: 5000,
			continuous: true,
			prevId: 'prevBtn',
			prevText: '',
			nextId: 'nextBtn',	
			nextText: '',
			controlsShow: false	
		});
		
		

	
bindScoop();	
});//doc ready	


function bindScoop(){
		$('.silver').click(function(){
			$('#citys li a').removeClass('pink');
			$(this).addClass('pink');
		});	
}




