$(document).ready(function(){
	
	
	$("#brand_more").click(function() {
	
		$('#brand_more_block').slideDown();
		$('#brand_more').parent().hide();
		return false;
	});
	
	$(".list_disks td").hover(function() {
		$(this).parent().children('td').css('border-top','1px solid #ff8500');
		$(this).parent().children('td').css('border-bottom','1px solid #ff8500');
		$(this).parent().children('td:first').css('border-left','1px solid #ff8500');
		$(this).parent().children('td:last').css('border-right','1px solid #ff8500');
	},function(){
		$(this).parent().children('td').css('border-top','1px solid #fff');
		$(this).parent().children('td').css('border-bottom','1px solid #fff');
		$(this).parent().children('td:first').css('border-left','1px solid #fff');
		$(this).parent().children('td:last').css('border-right','1px solid #fff');
	});

	
});
