$(document).ready(function() {
  
/* CACHE IMAGES
 var images = [ 'image1.jpg', 'image2.png', 'image3.gif' ];
  jQuery.each(images, function(i) {
    images[i] = new Image();
    images[i].src = this;
  });
*/
  
  
//SLIDE-DOWN-PANEL
  $("#open").click(function(){
    $("div#panel").slideDown("slow");
  });  
  $("#close").click(function(){
    $("div#panel").slideUp("slow");  
  });    
  $("#toggle a").click(function () {
    $("#toggle a").toggle();
  });
  
  /*=== Partners Page ===*/
    if($("#partnerList").length){
        $("body").append("<script src='http://cdn.astonishlive.com/CombineFiles.aspx?files=_partners-2.0.0.js'></script>");
      
    }
  
   /* Modal Window */
$('.modalFrCall[rel]').click(function(event){
  if($("#modFrame").length===0){$('body').append('<div  id="modFrame"  class="hide  modBkg"><a  href="#"  class="modClose  modBtnStyle"><img  src="viaClose.gif"  alt="x"></a><iframe  frameborder="0"><p>Your  browser  does not  support  iframes.</p></iframe></div>');}
  $($(this).attr('rel')+' iFrame').attr('src', $(this).attr('href'));
  $($(this).attr('rel')).lightbox_me({centered:true,closeSelector:'.modClose'});
  return false;});
$('.modalCall[rel]').click(function (event){
  if($($(this).attr('rel')+' .modClose').length===0){$($(this).attr('rel')).prepend('<a href="#" class="modClose modBtnStyle"><img src="viaClose.gif" alt="x"></a>');}
  $($(this).attr('rel')).lightbox_me({centered:true,closeSelector:'.modClose'});
  return false;});
  
});
