// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(function() {
   
      
  $(".empotrable").each(function(){
    var href = $(this).attr("href");
    $(this).click(function(){
       $("#website-contenido").load(href); //Le damos efecto
       $(this).attr({ href: "#"});
    });
  });  
  
	//$.fn.colorbox.settings.transition = "fade";
	$.fn.colorbox.settings.bgOpacity = "0.9";
	$.fn.colorbox.settings.contentCurrent = "image {current} of {total}";
	
  $(".flyer-link").colorbox({});   
  $("#foro").colorbox({contentWidth:"860px", contentHeight:"600px", contentIframe:"true"});
  $("#website-side-1-link").colorbox({contentWidth:"700px", contentHeight:"400px"});  
  $("#website-side-2-link").colorbox({contentWidth:"700px", contentHeight:"400px"});
  $("#website-side-3-link").colorbox({contentWidth:"700px", contentHeight:"400px"});
  //$("#destacado-1").colorbox({contentWidth:"700px", contentHeight:"400px"});  
  //$("#destacado-2").colorbox({contentWidth:"700px", contentHeight:"400px"});
  //$("#destacado-3").colorbox({contentWidth:"700px", contentHeight:"400px"});  
  //$("#destacado-4").colorbox({contentWidth:"700px", contentHeight:"400px"});    
  $("#contacta-dj-link").colorbox({contentWidth:"600px", contentHeight:"300px"});
  $("#contacta-trabaja-link").colorbox({contentWidth:"600px", contentHeight:"400px"});  
  $("#fotos-link").colorbox({contentWidth:"950px", contentHeight:"480px", contentIframe:"true"});  
  //$("#topdj").colorbox({contentWidth:"700px", contentHeight:"480px", contentIframe:"true"});
  $("#website").hide();
  $("#loading").addClass("ocultame");
  $("#website").removeClass("ocultame");
  $("#website").fadeIn();  

 
});