
$(document).ready(function(){

   document.domain = 'compraryvender.com';

    $("a[rel^='formulario']").prettyPhoto({
        animationSpeed: 'normal', /* fast/slow/normal */
        padding: 40, /* padding for each side of the picture */
        opacity: 0.35, /* Value betwee 0 and 1 */
        showTitle: true, /* true/false */
        allowresize: true, /* true/false */
        counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
        theme: 'light_square', /* light_rounded / dark_rounded / light_square / dark_square */
        callback: function(){}
    });

    $('#sugerir_aviso').click(function(e) {
        e.preventDefault();
        $.nyroModalSettings({
                closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="close">Close</a>',
                closeSelector: '.nyroModalClose',
                width: 500,
                height: 550
        });
        $.nyroModalManual({
          url: 'http://compraryvender.com/sugerir_aviso.php'
        });
        return false;
    });
/*
    $('#manual').click(function(e) {
            //alert('porno');
            e.preventDefault();
            var content = 'Content wrote in JavaScript<br />';
            jQuery.each(jQuery.browser, function(i, val) {
                    content+= i + " : " + val+'<br />';
            });
            $.fn.nyroModalManual({
                    bgColor: '#3333cc',
                    content: content
            });
            return false;
    });
*/
});