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

$(function() {
  
  cargar_ticker();
  
  $(".empotrable").each(function(){
    var href = $(this).attr("href");
    $(this).click(function(){
       $("#website-contenido").html(" ").load(href, "", function(){
         $("#website-contenido").fadeIn();
       }); //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:"740px", contentHeight:"590px", 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:"780px", contentHeight:"480px", contentIframe:"true"});  
  
  $("#website").hide();
  $("#loading").addClass("ocultame");
  $("#website").removeClass("ocultame");
  $("#website").fadeIn();   
  
  
});

function cargar_ticker(){
    $.get(
	"fotos_local.html", {}, function(data)
	  {
		  $("#ticker-fotos").html(data).find("ul").newsTicker();
	  }
  ) 
}
