﻿$(document).ready(function () {
    var nivelURL = 2;
    if ($('#hdnCbProvincias').val() > 0) nivelURL = 3;
    cargarComboCategorias('#cbCategorias', $('#hdnCbCategorias').val(), nivelURL, 'false');
    cargarComboProvincias('#cbProvincias', $('#hdnCbProvincias').val(), nivelURL);

    cargarPanelFeeds($('#hdnCbCategorias').val());

    $('#btnBuscar').click(function () {
        $('#hdnCbCategorias').val($('#cbCategorias').val());
        $('#hdnCbProvincias').val($('#cbProvincias').val());
        //if ($('#hdnCbCategorias').val() == 0) { alert('Debes seleccionar una categoría.'); return false; }
    });

    $("img.forzarTamanoMed").error(function () {
        $(this).attr("src", "http://www.ganga.es/imgWeb/nofotoM.gif");
    });
});

function cargarPanelFeeds(idCategoria) {
    if (!idCategoria == 0) {
        var cont = '';
        cont = cont + '<a href="http://fusion.google.com/add?feedurl=http%3A//www.ganga.es/rss.ashx%3Fca%3D' + idCategoria + '" target="_blank">';
        cont = cont + '<img src="http://www.ganga.es/imgWeb/externas/google.gif" width="104" height="17" alt="Añadir a Google" />';
        cont = cont + '</a>';
        cont = cont + '<a href="http://add.my.yahoo.com/content?lg=es&url=http://www.ganga.es/rss.ashx?ca=' + idCategoria + '" rel="nofollow" target="_blank">';
        cont = cont + '<img src="http://www.ganga.es/imgWeb/externas/miyahoo.gif" width="91" height="17" alt="Añadir a Yahoo!" />';
        cont = cont + '</a>';
        cont = cont + '<a href="http://www.netvibes.com/subscribe.php?url=http://www.ganga.es/rss.ashx?ca=' + idCategoria + '" rel="nofollow" target="_blank">';
        cont = cont + '<img src="http://www.ganga.es/imgWeb/externas/netvibes.gif" alt="Añadir a Netvibes" />';
        cont = cont + '</a>';
        $("#pnlFeeds").html(cont);
    }
}
