$(document).ready(function () {
	$("#div_img1a").mouseenter(function () {
		$("#div_img1b").animate({
			top: '+=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img1a").mouseleave(function () {
		$("#div_img1b").animate({
			top: '-=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img2a").mouseenter(function () {
		$("#div_img2b").animate({
			top: '+=100'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img2a").mouseleave(function () {
		$("#div_img2b").animate({
			top: '-=100'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img3a").mouseenter(function () {
		$("#div_img3b").animate({
			top: '+=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img3a").mouseleave(function () {
		$("#div_img3b").animate({
			top: '-=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img4a").mouseenter(function () {
		$("#div_img4b").animate({
			top: '-=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img4a").mouseleave(function () {
		$("#div_img4b").animate({
			top: '+=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img5a").mouseenter(function () {
		$("#div_img5b").animate({
			top: '-=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img5a").mouseleave(function () {
		$("#div_img5b").animate({
			top: '+=75'
		  }, 200, function() {
			// Animation complete.
		  });
	});
	$("#div_img6a").mouseenter(function () {
		$("#div_img6b").animate({
			top: '-=75'
		  }, 200, function() {
			// Animation complete.
			//$("#div_img6b").addClass("ontop");
		  });
	});
	$("#div_img6a").mouseleave(function () {
		$("#div_img6b").animate({
			top: '+=75'
		  }, 200, function() {
			// Animation complete.
			//$("#div_img6b").removeClass("ontop");
		  });
	});
});

