$(document).ready(function() {
$('#slideshow').cycle({
fx: 'fade',
speed: 500,
timeout: 6000,
before: onBefore,
pager: '#nav',
pagerAnchorBuilder: pagerFactory
});
$.get("/get_magazine.php", { lang_id: 1, type: 'm1', page: 1 },
function(data){
$("#magazine_content").html(data);
});
});
function onBefore() {
$('#caption').html('
' + $('#s' + this.id).html() + '
');
}
function pagerFactory(idx, slide) {
return ''+(idx+1)+'';
};
function change_tab(id,page) {
$('#lm1').attr("class", "off");
$('#lm2').attr("class", "off");
$('#lm3').attr("class", "off");
$('#l' + id).attr("class", "on");
$.get("/get_magazine.php", { lang_id: 1, type: id, page: page },
function(data){
$("#magazine_content").html(data);
});
}