// JavaScript Document
$(document).ready(function()
{
$("#trigger4").switchable("#panel4 > ul > li", {
			triggerType: "click",
			effect: "scroll",
			steps: 1,
			visible: 1
		}).autoplay(5).carousel().mousewheel();
		
		var api4 = $("#trigger4").switchable();
		$("#next4").click(function(){
			api4.next();
		});
		$("#prev4").click(function(){
			api4.prev();
		});
	$("#drop > li").mouseover(function()
	{
		$(this).css('background','#ededed url(/Skin/Default/images/anlian/dian_848484.gif) no-repeat 8px 8px')
	});
	$("#drop > li").mouseout(function()
	{
		$(this).css('background','url(/Skin/Default/images/anlian/dian_848484.gif) no-repeat 8px 8px')
	});
	$("#drop2 > li").mouseover(function()
	{
		$(this).css('background','#ededed url(/Skin/Default/images/anlian/dian_848484.gif) no-repeat 8px 8px')
	});
	$("#drop2 > li").mouseout(function()
	{
		$(this).css('background','url(/Skin/Default/images/anlian/dian_848484.gif) no-repeat 8px 8px')
	});
})
