/* */
$(function () {

  $('#coda-slider-1').codaSlider();
  $('#coda-slider-1 .title').hide();

  $("#imgWindows")
		.hover(
			function () {
			  $(this).animate({ top: "-=14" }, 250);
			  $("#linkMac").fadeOut(100, function () {
			    $("#linkWindows").fadeIn();
			  });
			},
			function () {
			  $(this).animate({ top: "+=14" }, 100);
			  $(this).animate({ top: "-=2" }, 80);
			  $(this).animate({ top: "+=2" }, 30);
			}
		);

  $("#imgMac")
		.hover(
			function () {
			  $(this).animate({ top: "-=8" }, 250);
			  $("#linkWindows").fadeOut(100, function () {
			    $("#linkMac").fadeIn();
			  });
			},
			function () {
			  $(this).animate({ top: "+=8" }, 100);
			  $(this).animate({ top: "-=2" }, 80);
			  $(this).animate({ top: "+=2" }, 30);
			}
		);

})
