
$(document).ready(function(){
			
	$('.image-loading').children().css({
		'float' : 'left'
	});

	$('#arrow-left a').click(function(){
		$('.image-loading').css({
			'marginLeft' : '-1000px'
		});
		$('.image-loading').children(':last').prependTo('.image-loading');
		$('.image-loading').animate({
				'marginLeft' : '0px'
		});
		return false;
	});
	
	$('#arrow-right a').click(function(){
		$('.image-loading').animate({
				'marginLeft' : '-1000px'
		},function(){
				$(this).children(':first').appendTo(this);
				$(this).css({
					'marginLeft' : '0px'
				});
		});
		return false;
	});
	
	$(function() {
		$(".hoverswap").hover(
			function () {
				$(this).attr("src", $(this).attr("src").replace(/.png/, "_a.png"));
			},
			function () {
				$(this).attr("src", $(this).attr("src").replace(/_a.png/, ".png"));
			}
		);
	});

});
