2013-10-15 11:33:31 +00:00
|
|
|
var banners = [];
|
|
|
|
var banner_index = 0;
|
|
|
|
|
2011-10-21 06:11:41 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
$.each($(".dymanic_load"),function(){
|
2013-10-15 11:33:31 +00:00
|
|
|
if($(this).attr("path")==''){
|
|
|
|
$(this).html("App setting Failed");
|
|
|
|
}else{
|
2013-10-19 11:10:43 +00:00
|
|
|
ajax_load_proc($(this),$(this).attr("path"));
|
2013-10-15 11:33:31 +00:00
|
|
|
}
|
2011-12-23 10:34:21 +00:00
|
|
|
});
|
|
|
|
|
2013-10-15 11:33:31 +00:00
|
|
|
$("#main_content").addClass("module");
|
|
|
|
});
|
|
|
|
|
|
|
|
function ajax_load_proc(wapper,url,isBanner){
|
2012-12-24 07:22:26 +00:00
|
|
|
$.get(encodeURI(url), {}, function(respText,textSta,XML){
|
2013-10-15 11:33:31 +00:00
|
|
|
if (textSta == 'success') {
|
2013-10-19 11:10:43 +00:00
|
|
|
wapper.html(respText);
|
2013-10-15 11:33:31 +00:00
|
|
|
};
|
|
|
|
if(textSta == 'error')
|
|
|
|
wapper.html("Loading Failed<br/> <a href='"+$(this).attr('path')+"'>Go See</a>");
|
2011-12-23 10:34:21 +00:00
|
|
|
});
|
2012-02-10 02:50:03 +00:00
|
|
|
}
|
2012-02-27 09:48:30 +00:00
|
|
|
|
2012-02-10 02:50:03 +00:00
|
|
|
$(document).ready(function() {
|
2013-10-19 11:10:43 +00:00
|
|
|
$(document).on('click', '.orbit-cycle-slideshow img', function()
|
2012-02-10 02:50:03 +00:00
|
|
|
{
|
2012-08-13 03:03:11 +00:00
|
|
|
if($(this).attr('link_url')!='')
|
2012-02-10 02:50:03 +00:00
|
|
|
{
|
2012-08-13 03:03:11 +00:00
|
|
|
if($(this).attr('link_open')=='new_window')
|
|
|
|
{
|
|
|
|
window.open($(this).attr('link_url'));
|
2012-02-10 02:50:03 +00:00
|
|
|
}
|
2012-08-13 03:03:11 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
document.location.href=$(this).attr('link_url')
|
2012-02-10 02:50:03 +00:00
|
|
|
}
|
2012-08-13 03:03:11 +00:00
|
|
|
}
|
2012-02-10 02:50:03 +00:00
|
|
|
})
|
|
|
|
});
|
2012-02-19 09:43:47 +00:00
|
|
|
// Ad Banner FX code [end]
|
2013-07-02 08:46:44 +00:00
|
|
|
|