﻿$(function(){
		//高亮左部导航分类
    	$('#nav a').filter('a[href$='+decodeURIComponent($.QueryString('type'))+']').addClass('current');	
		//下载列表折叠
		$('dl.downlist').addClass('accordion')
			.children('dd').hide().end()
			.children('dt').click(function(){
				$('dl.downlist dd:visible').not( $(this).next() ).slideUp('slow').prev().removeClass('active');
				$(this).toggleClass('active').next().slideToggle('slow','easeOutExpo');
			})
			.children('a').click(function(e){ e.preventDefault(); });
		//随机横幅背景
		$('#listWrapper h2.horizTitle').css({backgroundImage:'url(images/banner'+Math.ceil(Math.random()*5)+'.jpg)'});
		//ie6样式修复
		if( $.browser.version=='6.0' )
		   $('dl.downlist dt').bind('mouseenter mouseleave',function(){
																						 $(this).toggleClass('hover');
																						 });
})	;

