$(function() {
	// featured window effect
  var f = function (x) {
    $(this).find(".boxCaption").stop().animate({ top:x }, 150);
  };

	$("#featured .item").hover(
    function() { f.apply (this, [0])   },
    function() { f.apply (this, [180]) }
  );
});

