$(function() {
	
	var width = 534;
	
	$('#nav img').hover(function() {
		this.src = this.src.replace('.jpg', '_h.jpg');
	}, function() {
		this.src = this.src.replace('_h.jpg', '.jpg');
	});
	
	$('img.rollover').hover(function() {
		this.src = this.src.replace('.jpg', '_h.jpg');
	}, function() {
		this.src = this.src.replace('_h.jpg', '.jpg');
	});
	
	
	
	$('#pager a').click(function() {
		
		var index = parseInt(this.innerHTML) - 1;
		
		$('#pager a').removeClass('selected');
		$('#gallery .inner').animate({left: -index * width});
		$(this).addClass('selected');
		
		return false;
		
	});
	
	if ($('#gallery.auto').length) {
		setInterval(function() {
			$('#gallery .inner img:last').animate({left: -width}, function() {
				$(this).remove().css('left', 0).prependTo('#gallery .inner');
			});
		}, 5000);
	}
	
});