$(function(){

	$("#navigation li a").css({
		backgroundPosition: '0px 120px'
	});
	
	$("#navigation li a").hover(function(){
		$(this).animate({
			backgroundPosition: '(0px -40px)'
		})
	}, function(){
		$(this).animate({
			backgroundPosition: '(0px 120px)'
		}, function(){
			$(this).dequeue()
		})
	});
	
	
	$("#servicelist li a").css({
		backgroundPosition: '0px -55px'
	});
	
	$("#servicelist li a").hover(function(){
		$(this).animate({
			backgroundPosition: '(0px 0px)'
		});
	}, function(){
		$(this).animate({
			backgroundPosition: '(0px -55px)'
		}, function(){
			$(this).dequeue();
		});
	});
	
	
	$("#testimonial-cycle").cycle({
		timeout: 20000,
		speed:1500
	});
	
	
	$('#testimonial-cycle div:odd').css('backgroundPosition','-270px 0');
	
	
	$("#slider").easySlider({
		auto: false,
		continuous: true
	});

	
	
});
