$(document).ready(function(){
		
	$('ul li a').hover(function(){
	
		//in
		var thisindex = $('ul li a').index(this);
		
		$('#images #con div')
		.animate({
			top: "-500px"
		},{queue:false})
		
		.eq(thisindex)
		.animate({
			top: "0px"
		},{queue:false});
	
	}, function(){
		
		//out
		$('#images #con div').each(function(i){
		
			var thisimgind = $('#images #con div').index(this);
		
			$(this).animate({
				top: "-500px"
			},{queue:false});
		});
	
	});
		
});