$(function() {
	
	$("#menu li").hover(
		function() {
			$(this).animate({paddingLeft: 25}, 200);
		},
		function() {
			$(this).animate({paddingLeft: 0}, 200);
		}
	);
	
	$("#slider-bottom").easySlider({
		auto: true,
		continuous: true
	});
	
	$("#slider-top").easySlider({
		auto: true,
		continuous: true
	});
	
	$(document).pngFix();
});	
