﻿Ext.onReady(function() {
    //Ext.QuickTips.init();

    var query = document.location.search.substring(9);

    if (query.indexOf('&') >= 0)
        query = query.substr(0, query.indexOf('&'));

    if (null != query && !isNaN(query) && query.trim() != "") {
        Home.getDestaque(query);
        this.getMenu(query);
    }

    
    
});

function getMenu(query) {

    $('in').setAttribute('href', 'index_quintal.html?loja_id=' + query);
    $('card').setAttribute('href', 'cardapio_quintal.html?loja_id=' + query + '&tipo=1');
    $('inf').setAttribute('href', 'cobertura_quintal.html?loja_id=' + query);
    $('bai').setAttribute('href', 'historia_quintal.html?loja_id=' + query);
    $('bra').setAttribute('href', 'aquintal.html?loja_id=' + query);
    $('fot').setAttribute('href', 'fotos_quintal.html?loja_id=' + query);
   /* $('cob').setAttribute('href', 'cobertura_quintal.html?loja_id=' + query);
    $('card1').setAttribute('href', 'cardapio_quintal.html?loja_id=' + query + '&tipo=1');*/
    $('imp').setAttribute('href', 'imprensa_quintal.html?loja_id=' + query);
	if ($('nov'))
		$('nov').setAttribute('href', 'novidades_quintal.html?loja_id=' + query);	
}
