var myChart = null;
$(document).ready(function() {   
    $('#search-txt').focus(function() {
        if ($(this).val() == 'Search ...') {
            $(this).val('');
            $(this).removeClass('empty');
        }
    });
    $('#search-txt').blur(function() {
        if (jQuery.trim($(this).val()) == '') {
            $(this).val('Search ...');
            $(this).addClass('empty');
        }
    });    
    $('#search-txt').blur();
    $('#search-txt').autocomplete({
        'source': countersList,
        'minLength': 1,
        'delay': 300,
        'select': function (event, ui) {
                setTimeout(function() {searchCounters($('#search-txt').val())}, 100);
            }
    });
    $('#search-txt').keypress(function(event) {
        if (event.which == 13)
            setTimeout(function() {searchCounters($('#search-txt').val())}, 100);
    });
    if (pageCc == 'downloads') {
        $('#downloads-calendar-controls-right a').button();
        $('#downloads-calendar-controls-next').click(function() {
            $('#downloads-calendar-list').fullCalendar('next');
        });
        $('#downloads-calendar-controls-prev').click(function() {
            $('#downloads-calendar-list').fullCalendar('prev');
        });
        $('#downloads-calendar-controls-month, #downloads-calendar-controls-year').unbind('click').change(function() {
            $('#downloads-calendar-list').fullCalendar(
                'gotoDate',
                new Number($('#downloads-calendar-controls-year').attr('value')),
                new Number($('#downloads-calendar-controls-month').attr('value') - 1)
            );
        });
        $('#downloads-calendar-list').fullCalendar({
            'theme': true,
            'editable': false,
            'year': sDate.getFullYear(),
            'month': sDate.getMonth() - 1,
            'header': {'left': '', 'center': '', 'right': ''},
            'height': 600,
            'viewDisplay': function(view) {
                    $('#downloads-calendar-controls-month').attr('value', $.fullCalendar.formatDate(view.start, 'M'));
                    $('#downloads-calendar-controls-year').attr('value', $.fullCalendar.formatDate(view.start, 'yyyy'));
                    downloadsPopulateYears($.fullCalendar.formatDate(view.start, 'yyyy'));
                    $('#downloads-calendar-list').fullCalendar('removeEvents');
                    $('#downloads-calendar-controls-center').show();
                    $.ajax({
                        'dataType': 'json',
                        'cache': false,
                        'url': '/downloads/a-eods-get-events',
                        'data': 'year=' + $.fullCalendar.formatDate(view.start, 'yyyy') + '&month=' + $.fullCalendar.formatDate(view.start, 'M'),
                        'success': function(data) {
                                $('#downloads-calendar-list').fullCalendar('addEventSource', data);
                                $('#downloads-calendar-controls-center').hide();
                            },
                        'error': function() {
                                $('#downloads-calendar-controls-center').hide();
                            }
                    });
                },
            'eventClick': function(calEvent, jsEvent, view) {
                    $.fancybox('/downloads/confirm?id=' + escape(calEvent.id), {
                        'type': 'iframe',
                        'width': 620,
                        'height': 300,
                        'autoDimensions': false
                    });
                }
        });
    } else if (pageCc == 'companies') {
        $('#announcements-contents-list h3 a').fancybox({
            'type': 'iframe',
            'width': 860,
            'height': 550,
            'autoDimensions': false
        });
        $('#announcements-contents-list h3 a').click(function() {
            $('#announcements-contents-list h3 a').removeClass('active');
            $(this).addClass('active');
        });
    } else if (pageCc == 'market') {
        $('#market-dates a').button();
        $('.results-table tbody tr:even').addClass('odd');
        $('#market-dates #show-archive').click(function() {
            $('#market-dates .current').hide();
            $('#market-dates .controls').show();
        });
        $('#market-dates #show-current').click(function() {
            if (pageCa == 'klse')
                window.location.href = '/market/klse';
            else
                window.location.href = '/market/summary';
        })
        $('#market-dates .controls #archive-date #select-date').datepicker({
            'showAnim': '',
            'changeMonth': true,
            'changeYear': true,
            'dateFormat': 'D, dd M yy',
            'altField': '#date-alternate',
            'altFormat': 'yy-mm-dd',
            'onSelect': function() {
                    $('.loading').show();
                    $.ajax({
                        'cache': false,
                        'url': '/market/a-check-date',
                        'data': 'date=' + $('#date-alternate').val(),
                        'success': function(data) {
                            $('.loading').hide();                 
                            if (data) {
                                if (pageCa == 'klse')
                                    window.location.href = '/market/klse/date/' + escape(data);
                                else
                                    window.location.href = '/market/summary/date/' + escape(data);
                            } else {
                                alert('Sorry, no results found in this date');
                            }
                        },
                        'error': function() {
                            $('.loading').hide();
                        }
                    });
                }
        });
        $('#market-dates #show-previous, #market-dates #show-next').click(function() {
            var moveTo = '';
            var currentDate = $(this).attr('rel');
            if (this.id == 'show-previous')
                moveTo = 'prev';
            else if (this.id == 'show-next')
                moveTo = 'next';
            if (moveTo && currentDate) {
                $('.loading').show();
                $.ajax({
                    'cache': false,
                    'url': '/market/a-move',
                    'data': 'to=' + escape(moveTo) + '&date=' + escape(currentDate),
                    'success': function(data) {
                        $('.loading').hide();
                        if (data) {
                            if (pageCa == 'klse')
                                window.location.href = '/market/klse/date/' + escape(data);
                            else
                                window.location.href = '/market/summary/date/' + escape(data);
                        }
                    },
                    'error': function() {
                        $('.loading').hide();
                    }
                });
            }
        });
        if (pageCa == 'klse') {
            var expr = new RegExp('>[ \t\r\n\v\f]*<', 'g');
            $('#market-klse-results table').html($('#market-klse-results table').html().replace(expr, '><'));
        }
        $('#market-klse-results table').dataTable({
            'bPaginate': false,
            'bFilter': false,
            'bInfo': false,
            'bAutoWidth': false,
            'aaSorting': [],
            'aoColumnDefs': [
                    {'sType': 'numeric-comma', 'aTargets': [9]}
                ]
        });
    } else if (pageCc == 'counters') {
        if (pageCa == 'announcements') {
            $('#counter-view .announcements-list a.rows').fancybox({
                'type': 'iframe',
                'width': 860,
                'height': 550,
                'autoDimensions': false
            });
        } else if (pageCa == 'historical-prices') {
            $('.results-table tbody tr:even').addClass('odd');
            $('#counter-view .historical-prices .controls #select-date').datepicker({
                'showAnim': '',
                'changeMonth': true,
                'changeYear': true,
                'dateFormat': 'D, dd M yy',
                'altField': '#date-alternate',
                'altFormat': 'yy-mm-dd',
                'onSelect': function() {
                        window.location.href = '/counters/historical-prices/stock/' + $('#stock-code').val() + '/date/' + $('#date-alternate').val();
                    }
            });
        } else if (pageCa == 'chart') {
            $('#counter-view .controls').buttonset();
            writeFlashChartsCounters('candle-sticks');
            $('#counter-view #show-candlesticks').click(function() { 
                $('#flashcontent').html('');
                writeFlashChartsCounters('candle-sticks');
            });
            $('#counter-view #show-ohlc').click(function() { 
                $('#flashcontent').html('');
                writeFlashChartsCounters('ohlc');
            });
            $('#counter-view #show-line').click(function() { 
                $('#flashcontent').html('');
                writeFlashChartsCounters('line');
            });
        }
    } else if (pageCc == 'users') {
        if (pageCa == 'sign-up' || pageCa == 'update-profile' || pageCa == 'sign-up-open-id') {
            $('#Dob').datepicker({
                'showAnim': '',
                'changeMonth': true,
                'changeYear': true,
                'dateFormat': 'dd/mm/yy'
            });
        }
    } else if (pageCc == 'portfolio') { 
        $('#portfolio-top-buttons button, #portfolio-bottom-buttons button').button();
        $('#refresh').click(function() {
            window.location.href = '/portfolio';
        });
        $('#add-counter').click(function() {
            window.location.href = '/portfolio/add';
        });
        $('.edit-counter').click(function() {
            var checked = $('.results-table .radios:checked');
            if (checked.length)
                window.location.href = '/portfolio/edit/id/' + escape($(checked[0]).val());
        });
        $('.delete-counter').click(function() {
            var checked = $('.results-table .radios:checked');
            if (checked.length) {
                if (confirm('Are you sure to delete this counter?'))
                    window.location.href = '/portfolio/delete/id/' + escape($(checked[0]).val());
            }
        });
        $('#portfolio-list table').dataTable({
            'bPaginate': false,
            'bFilter': false,
            'bInfo': false,
            'bAutoWidth': false,
            'aaSorting': [],
            'aoColumnDefs': [
                    {'sType': 'string', 'aTargets': [1, 2]},
                    {'sType': 'numeric', 'aTargets': [3, 5, 6, 7, 8, 9, 10, 12, 13, 14]},
                    {'sType': 'numeric-comma', 'aTargets': [11]}
                ]
        });
        $('.results-table tbody tr').click(function() {
            $(this).children('td').children('input').attr('checked', true);
        });
        if (pageCa == 'add' || pageCa == 'edit') {
            if ($('#Stock_Code').val() != '')
                portfolioAddCounter($('#Stock_Code').val());
            $('#back').click(function() {
                window.location.href = '/portfolio';
            });
            $('#Buy_Date').datepicker({
                'showAnim': '',
                'changeMonth': true,
                'changeYear': true,
                'dateFormat': 'dd/mm/yy'
            });
            $('#portfolio-searchCounter').autocomplete({
                'source': countersList,
                'minLength': 1,
                'delay': 150,
                'select': function (event, ui) {
                        setTimeout(function() {portfolioAddCounter($('#portfolio-searchCounter').val())}, 100);
                    }
            });
            $('#portfolio-searchCounter').keypress(function(event) {
                if (event.which == 13)
                    setTimeout(function() {portfolioAddCounter($('#portfolio-searchCounter').val())}, 100);
            });
            $('#Stock_Code, #Buy_Date').change(function() {
                portfolioGetPrice($('#Stock_Code').val(), $('#Buy_Date').val());
            });
        }
    } else if (pageCc == 'analysis') {
        $('#analysis .left .buttons a').button();
        $('#analysis #show-latest').click(function() {
            window.location.href = '/analysis/list';
        })
        $('#analysis #show-prev, #analysis #show-next').click(function() {
            var moveTo = '';
            var currentDate = $(this).attr('rel');
            if (this.id == 'show-prev')
                moveTo = 'prev';
            else if (this.id == 'show-next')
                moveTo = 'next';
            if (moveTo && currentDate) {
                $('.loading').show();
                $.ajax({
                    'cache': false,
                    'url': '/analysis/a-move',
                    'data': 'to=' + escape(moveTo) + '&date=' + escape(currentDate),
                    'success': function(data) {
                        $('.loading').hide();
                        if (data) {
                            if (pageCa == 'klse')
                                window.location.href = '/analysis/list/date/' + escape(data);
                            else
                                window.location.href = '/analysis/list/date/' + escape(data);
                        }
                    },
                    'error': function() {
                        $('.loading').hide();
                    }
                });
            }
        })
        $('#calendar').datepicker({
            'showAnim': '',
            'changeMonth': true,
            'changeYear': true,
            'dateFormat': 'yy-mm-dd',
            'altField': '#date-alternate',
            'altFormat': 'yy-mm-dd',
            'defaultDate': $.datepicker.parseDate('yy-mm-dd', $('#date-current').val()),
            'onSelect': function() {
                    $('.loading').show();
                    $.ajax({
                        'cache': false,
                        'url': '/analysis/a-check-date',
                        'data': 'date=' + $('#date-alternate').val(),
                        'success': function(data) {
                            $('.loading').hide();                 
                            if (data) {
                                window.location.href = '/analysis/list/date/' + escape(data);
                            } else {
                                $('#calendar').datepicker('setDate', $.datepicker.parseDate('yy-mm-dd', $('#date-current').val()));
                                alert('Sorry, no analysis found in this date');
                            }
                        },
                        'error': function() {
                            $('.loading').hide();
                        }
                    });
                }
        });
        $('#analysis #analysis-list .row').hover(function() {
            $(this).addClass('row-hover');
        }, function() {
            $(this).removeClass('row-hover');
        });
    }
});

function writeFlashChartsCounters(type)
{
    var sObj = new SWFObject('/amcharts/amstock.swf', 'amstock', 780, 650, 8, '#ffffff');
    sObj.addVariable('settings_file', encodeURIComponent('/counters/chart-settings/type/' + type + '/stock/' + $('#stock-code').val()));
    sObj.addVariable('chart_id', 'chart1');
    sObj.addParam('wmode', 'opaque');
    sObj.write('flashcontent');
}
function amChartInited(chart_id){
    myChart = document.getElementById(chart_id);
}
function downloadsPopulateYears(currentYear)
{
    currentYear = new Number(currentYear);
    var html = '';
    for (var i = currentYear - 7; i < (currentYear + 8); i++)
        html += '<option value="' + i +'"' + (( i == currentYear ) ? ' selected' : '') + '>' + i + '</option>';
    $('#downloads-calendar-controls-year').html(html);
}
function searchCounters(text)
{
    if (text == '' || text == 'Search ...')
        return;
    $('#search-txt').val('Loading ...');
    $('#search-txt').addClass('empty');
    $.ajax({
        'cache': false,
        'url': '/counters/a-check-search',
        'data': 'keyword=' + escape(text),
        'success': function(data) {
                $('#search-txt').val(text);
                $('#search-txt').removeClass('empty');
                if (data)
                    window.location.href = '/counters/view/stock/' + escape(data);
                else
                    alert('Counter not found');
            },
        'error': function() { 
                $('#search-txt').val(text);
                $('#search-txt').removeClass('empty');
            }
    });
}
function portfolioAddCounter(text)
{
    $('#portfolio-form .counter-details input[type=text]').val('');
    $('#portfolio-form .portfolio-search-loading').show();
    $.ajax({
        'cache': false,
        'url': '/counters/a-load-counter',
        'data': 'keyword=' + escape(text),
        'success': function(data) {
                $('#portfolio-form .portfolio-search-loading').hide();
                if (data) {
                    try {
                        var counter = jQuery.parseJSON(data);
                        $('#portfolio-form #Stock_Code').val(counter.Stock_Code);
                        $('#portfolio-form #Stock_Name').val(counter.Stock_Name);
                        $('#portfolio-form #Company_Name').val(counter.Company_Name);
                    } catch(e) {}
                }
            },
        'error': function() {
                $('#portfolio-form .portfolio-search-loading').hide();
            }
    });
}
function portfolioGetPrice(stockCode, buyDate)
{
    if (!(stockCode != '' && buyDate != ''))
        return;
    $('#portfolio-form .portfolio-price-loading').show();
    $.ajax({
        'cache': false,
        'url': '/market/a-get-price',
        'data': 'stock-code=' + escape(stockCode) + '&date=' + escape(buyDate),
        'success': function(data) {
                $('#portfolio-form .portfolio-price-loading').hide();
                $('#portfolio-form #Buy_Price').val(data);
            },
        'error': function() {
                $('#portfolio-form .portfolio-price-loading').hide();
            }
    });
}

jQuery.fn.dataTableExt.oSort['numeric-comma-asc']  = function(a, b) {
    var x = (a == "-") ? 0 : a.replace( /,/, "" );
    var y = (b == "-") ? 0 : b.replace( /,/, "" );
    x = parseFloat( x );
    y = parseFloat( y );
    return ((x < y) ? -1 : ((x > y) ?  1 : 0));
};
jQuery.fn.dataTableExt.oSort['numeric-comma-desc'] = function(a,b) {
    var x = (a == "-") ? 0 : a.replace( /,/, "" );
    var y = (b == "-") ? 0 : b.replace( /,/, "" );
    x = parseFloat( x );
    y = parseFloat( y );
    return ((x < y) ?  1 : ((x > y) ? -1 : 0));
};
$.ui.autocomplete.prototype._initSource = function() {
    var array, url;
    if ($.isArray(this.options.source)) {
        array = this.options.source;
        this.source = function( request, response ) {
            var matcher = new RegExp( "^"+$.ui.autocomplete.escapeRegex(request.term), "i" );
            response( $.grep( array, function(value) {
                return matcher.test( value.label || value.value || value );
            }) );
        };
    } else if ( typeof this.options.source === "string" ) {
        url = this.options.source;
        this.source = function( request, response ) {
            $.getJSON( url, request, response );
        };
    } else {
        this.source = this.options.source;
    }
};

/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",encodeURIComponent(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();if(!(navigator.plugins && navigator.mimeTypes.length)) window[this.getAttribute('id')] = document.getElementById(this.getAttribute('id'));return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;
