$(document).ready(function () {
    $("a.zoom").fancybox({ imageScale: false });
    $("a.iframe").fancybox(
		{
		    overlayColor: '#ffffff',
		    overlayOpacity: 0.9,
		    imageScale: false,
		    frameWidth: 800,
		    frameHeight: 600,
		    width: 800,
		    height: 600,
		    hideOnContentClick: false,
		    callbackOnClose: function () {
		        $("#fancy_content iframe").remove();
		    }
		});
});
function mostrarcorporatevideo() {
    $("a.iframe").trigger('click');
}
$(document).ready(function () {
    //todos los enlaces a google maps se asocian a lightbox
    //    $("a[href^='http://mapas.google.es']").fancybox({
    //        'imageScale': false, 
    //        width: 860,
    //        height: 840
    //    });
    // todos los enlaces hacia una imagen se asocian a lightbox
    $("a[href$='.jpg']").fancybox({
        'imageScale': false
    });
})
$(document).unload(function () {
    GUnload();
});
//$.fn.fancybox.defaults = {
//    width: 860,
//    height: 840
//}
