var a = null;
|
|
function child(item) {
|
a = item;
|
$(".popimg").attr("src", item.thumb);
|
$("#poptext").text(item.desc);
|
|
};
|
|
/*
|
$(function () {
|
$('.menu-bottom ul li').click(function () {
|
debugger
|
$(this).addClass('on').siblings().removeClass('on');
|
//$('.tables').eq($(this).index()).show().siblings().hide();
|
$(this).parent().parent().parent().next().children('div').eq($(this).index()).stop().show().siblings().stop().hide();
|
if ($(this).index() == 1) {
|
$("#video").attr("src",a.video);
|
}
|
});
|
});*/
|