
//$(document).ready(
//	function(){
//		$("li.ht-selector-item").hover(
//		  function () {
//			var ul_images = $(this).parent().parent().children(".display").children(".images");
//			var image_height = ul_images.children().eq(0).height();
//			var this_index = $(this).parent().children("li").index($(this));
//			var margin_top = -(this_index * image_height);
//			$(this).siblings().removeClass("here");
//		    $(this).addClass("here");
//			ul_images.animate({ marginTop: margin_top + "px" }, 250 );			

//		  },
//		  function () {}
//		);
//	}
//);

$(document).ready(function () {
    $(".ht-selector-item a").hover(function () {
        var _this = $(this);
        var _thisParent = _this.parent();
        var ul_images = _thisParent.parent().parent().children(".display").children(".images");
        var image_height = ul_images.children().eq(0).height();
        var this_index = _thisParent.parent().children(".ht-selector-item").index(_thisParent);
        var margin_top = -(this_index * image_height);
        _thisParent.siblings(".ht-selector-item").removeClass("here");
        _thisParent.addClass("here");
        ul_images.animate({ marginTop: margin_top + "px" }, 0);
    });
}); 
