var iniciar = function(){
    //----------------------------------------------
    if($('rematesLista')){
        $$('#rematesLista table td').setStyles({
            'cursor' : 'pointer'
        });
        $$('#rematesLista table tr').addEvent('click', function(event){
            var a = this.getElement('a');
            var href = a.get('href');
            window.location.href = href;
        })
    }
    if($('proxRemate')){
        $('proxRemate').setStyles({
            'cursor' : 'pointer'
        });
        $('proxRemate').addEvent('click', function(event){
            var a = this.getElement('a');
            var href = a.get('href');
            window.location.href = href;
        })
    }
    if($('TablaDeRemate')){
        $$('#TablaDeRemate table td').setStyles({
            'cursor' : 'pointer'
        });
        $$('#TablaDeRemate table tr').addEvent('click', function(event){
            var a = this.getElement('a');
            var href = a.get('href');
            window.location.href = href;
        })
    }
    if($('LotesLista')){
        $$('#LotesLista table td').setStyles({
            'cursor' : 'pointer'
        });
        $$('#LotesLista table tr').addEvent('click', function(event){
            var a = this.getElement('a');
            var href = a.get('href');
            window.location.href = href;
        })
    }
    //----------------------------------------------
    if($('LotesLista') || $('infoLote')){
        $('menucol').hide();
        $('content').setStyle('width', '100%');
        $('content_wrap').setStyle('width', '90%');
    }
    //----------------------------------------------
}
window.addEvent('domready', function() {
	iniciar();
});
