﻿$(document).ready(function(){
	//属性筛选
	var uls = $('.attributeFilter ul');
	for (var j=0; j<uls.length; j++) {
		if ($(uls[j]).children('li').length > 8) {
			$(uls[j]).parent().append('<div class="more"><h3>显示更多内容»</h3><ol></ol></div>');
			$(uls[j]).parent().children('.more').children('ol').prepend($(uls[j]).children('li:gt(7)'));
			//$('.attributeFilter').remove($(uls[j]).children('li')[i]);
			$('.attributeFilter .more').hover(function() {
				$(this).addClass("hover");
			},function() {
				$(this).removeClass("hover");
			});
		}
	}
});
