jQuery(document).ready(function(){

    jQuery(".bebe").each(function () {
         jQuery(this).find("a").lightBox({
        	overlayBgColor: '#000',
        	overlayOpacity: 0.6,
        	imageLoading: '/site/images/lightbox-ico-loading.gif',
        	imageBtnClose: '/site/images/lightbox-btn-close.gif',
        	imageBtnPrev: '/site/images/lightbox-btn-prev.gif',
        	imageBtnNext: '/site/images/lightbox-btn-next.gif',
        	imageBlank: '/site/images/lightbox-blank.gif',
        	containerResizeSpeed: 350,
        	txtImage: 'Imagen',
        	txtOf: 'de'
           });
    });

    var host = "http://www.corachan.com"
	
	if(jQuery(".link-map").length>0) {
		jQuery(".link-map").click( function() {
            var link = '/maps/index.asp';
            if(jQuery("#text p span.block").length>0) link += "?block=" + jQuery("#text p span.block").text();
			jQuery("#lightbox-content").html('<iframe id="googlemaps" height="550" frameborder="0" width="570" scrolling="no" src="'+ host + link + '" marginwidth="0" marginheight="0"/>');
			jQuery(".div_lightbox").show();
			jQuery(".div_lightbox").lightBox().click();			
		});
	}

    jQuery("#link-map1").click(function () {
        jQuery("#lightbox-content").html('<iframe id="googlemaps" height="550" frameborder="0" width="570" scrolling="no" src="'+ host +'/maps/index.asp?block=C1" marginwidth="0" marginheight="0"/>');
		jQuery(".div_lightbox").show();
		jQuery(".div_lightbox").lightBox().click();
    });

    jQuery("#link-map2").click(function () {
        jQuery("#lightbox-content").html('<iframe id="googlemaps" height="550" frameborder="0" width="570" scrolling="no" src="'+ host +'/maps/index.asp?block=C2" marginwidth="0" marginheight="0"/>');
		jQuery(".div_lightbox").show();
		jQuery(".div_lightbox").lightBox().click();
    });

    jQuery("#link-map3").click(function () {
        jQuery("#lightbox-content").html('<iframe id="googlemaps" height="550" frameborder="0" width="570" scrolling="no" src="'+ host +'/maps/index.asp?block=C3" marginwidth="0" marginheight="0"/>');
		jQuery(".div_lightbox").show();
		jQuery(".div_lightbox").lightBox().click();
    });

	jQuery(".corachan-views-PersonList #search_form").submit( function() {
		jQuery(this).find(".loading").show();
	});

    jQuery("[name='googleSearchFrame']").attr("id", "googleResultsSearch");
})    
