$(document).ready(function() {
    



    var options = {
            script: "/ajax.php?type=destination&",
            varname: "q",
            minchars: 3,
            json: true,
            maxresults: 35,
            cache: true,
            noresults: false,
            callback: function (obj) { document.getElementById('destination_id').value = obj.id; }
    };
    var as = new bsn.AutoSuggest('destination', options);

    $('#area-login a').click(function() {
        $('#form-login').toggle();
    });
	$('input[type="text"],textarea,input[type="password"]').focus(function() {
		$(this).addClass("focusFieldForm");
    }).blur(function() {
    	$(this).removeClass("focusFieldForm");
    });


    $('#btnSideSearch').click(function() {$('#frmSideSearch').submit();});
    $('#tabs li:last').addClass('nomargin');
    $('#promosoffers_list li:last').addClass('nomargin');
    $('#entradasblog li:last').addClass('nobackground');
    $('#entradasblog li:odd').addClass('alterno');
    $('#prefooter li:last').addClass('nobackground');
    $('#listadosuites li:last').addClass('noborder');
    $('#suite_atributes li ul li:last-child').addClass('nobackground');
    $('.listado-footer-nav li:last').addClass('nobackground');
    $('#container-footer ul.listado-footer-nav li:last').addClass('nobackground');
    $("a[rel=external]").click(function(){this.target = "_blank";});






    
});

