// javascript document
$(function (){
var itopdefault = $(".queue").offset().top;
var it = 0;
$(window).scroll(function (){
it = $(document).scrolltop();
if(it>itopdefault){
$(".queue").addclass("navfixed");
}
else{
$(".queue").removeclass("navfixed");
}
});
//搜索框
//yz($("#s_box"));
//筛选条件
$(".sel_more").toggle(function (){
if($(this).html()=='更多选项'){
$(this).css({"background-image": "url(/res/template/yutong/resource/images/arr_t.gif)"});
$(this).html("基本选项");
$(".sel_content>dl:gt(4)").show();
}
else{
$(this).css({"background-image": "url(/res/template/yutong/resource/images/arr_b.gif)"});
$(this).html("更多选项");
$(".sel_content>dl:gt(4)").hide();
}
},
function (){
if($('.sel_more').html()=='更多选项'){
$('.sel_more').css({"background-image": "url(/res/template/yutong/resource/images/arr_t.gif)"});
$('.sel_more').html("基本选项");
$(".sel_content>dl:gt(4)").show();
}
else{
$('.sel_more').css({"background-image": "url(/res/template/yutong/resource/images/arr_b.gif)"});
$('.sel_more').html("更多选项");
$(".sel_content>dl:gt(4)").hide();
}
});
$(".sel_content").find("a").click(function (){
$(this).addclass("active").siblings().removeclass("active");
});
$(".sel_reset").click(function (){
$(".sel_content").find("dl").find("a:gt(0)").removeclass("active").end().find("a:lt(1)").addclass("active");
});
//加入对比
$(".contrast").click(function () {
if($("#compare").length==0){
var $compare = "
"
$("body").append($compare);
}
if($("#compare").is(":hidden")){
$("#compare").show();
}
var index = $(".contrast").index($(this));
var url = $(".show_pics").eq(index).attr("href");
var src = $(".show_pics").find("img").eq(index).attr("src");
var id = $(".show_pics").find("img").eq(index).attr("id");
var title = $(".show_list").find("div").children("a").eq(index).html();
var content = "";
if($(this).hasclass(".active")){
$(this).removeclass("active");
$.each($(".c_delete"), function (i, n){
if($(".c_delete").eq(i).attr("id")==id){
var idindex = jquery.inarray(id, productids);
productids.splice(idindex,1);
removecookie(id);
$(".c_delete").eq(i).parents("li").remove();
$("#compare").find("ul").append("");
}
});
}
else{
if($(".c_href").length<4){
productids.push(id);
addtocookie(id,src,url,title);
$(this).addclass("active");
$("#compare").find("li:empty").eq(0).append(content);
}
else{
if($("#warn").length==0){
var $compare = "";
var $html = "";
$("body").append($compare);
$("body").append($html);
$("#cmask").height($("body").outerheight());
}
else{
$("#warn").show();
$("#cmask").show();
}
}
}
return false;
});
$(".c_delete").live("click", function (){
var idel = $(this).attr("id");
$("#box"+idel).removeclass("active");
$(this).parents("li").remove();
var idindex = jquery.inarray(idel, productids);
productids.splice(idindex,1);
removecookie(idel);
$("#compare").find("ul").append("");
});
$(".c_hide").live("click", function (){
$("#compare").hide();
});
$(".c_clear").live("click", function (){
productids = new array();
removeallcookie();
$("#compare").find("li").empty();
$(".contrast").removeclass("active");
});
$(".warnclose").live("click", function (){
$("#warn").hide();
$(".c_mask").hide();
});
//热销车型无缝滚动
hotscroll()
function hotscroll(){
var ispeed = -1;
var ileft = 0;
var timer = null;
var interval = 25;
$(".hot_wrap>ul").append($(".hot_wrap>ul").html());
$(".hot_wrap>ul").width($(".hot_wrap").find("li").length*$(".hot_wrap").find("li").outerwidth(true));
timer = setinterval(hsmove, interval);
$(".hot_wrap>ul").hover(function (){
clearinterval(timer);
}, function (){
timer = setinterval(hsmove, interval);
});
function hsmove(){
ileft = $(".hot_wrap>ul").position().left+ispeed;
if(ileft<=-$(".hot_wrap>ul").width()/2){
ileft = 0;
}
else if(ileft>=0){
ileft = -$(".hot_wrap>ul").width()/2;
}
$(".hot_wrap>ul").css({"left": ileft+"px"});
}
$(".hot_lbtn").mouseover(function (){
ispeed = math.abs(ispeed);
});
$(".hot_rbtn").mouseover(function (){
ispeed = -math.abs(ispeed);
});
}
});
var productids = new array();
function compareproduct(){
if(productids.length<2){
if($(".warn2").length==0){
var $compare = "";
var $html = "";
$("body").append($compare);
$("body").append($html);
$("#cmask2").height($("body").outerheight());
}
else{
$(".warn2").show();
$("#cmask2").show();
}
return false;
}
window.open("compare.html?ids=" + productids);
}