function mycarousel_initCallback(carousel)
{
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
jQuery(document).ready(function() {
 	jQuery('#mycarousel').jcarousel({
        auto: 3,
		scroll: 2,
        wrap: 'last',
		animation: 'slow',
        initCallback: mycarousel_initCallback
    });
	jQuery("#xyfj img").click(function(){
		window.location = ("list.aspx?cid=276");
	});
	$("div.menuTitle ul li:first").css("background","#91a2cd");
	var menuLi = $("div.menuTitle ul li");
	menuLi.hover(function(){
		$(this).css("background","#91a2cd").siblings().css("background","#657db6");
		var boxIndex = menuLi.index(this);
		$("div.menuBox > div").eq(boxIndex).slideDown("fast").siblings().slideUp("fast");
	});
});
