/*  Finaltouch 
 *  File: finaltouch.js
 *  Abstract: window javascript for finaltouch.de
 
 *  Version: 1.1
 *  © Team Tejat Hamburg 2011 http://marcwright.de
 
 */
/* some pre-loads */
if (document.images){
    pre = new Image();
    pre_image_url = new Array();
    /* insert your preloads here */
    
    pre_image_url[0] = '/wp-content/themes/finaltouch/images/ajax-loader.gif';
    pre_image_url[1] = '/wp-content/themes/finaltouch/images/final_touch_logo_small.png';
    pre_image_url[2] = '/wp-content/themes/finaltouch/images/body_background.png';
    pre_image_url[3] = '/wp-content/themes/finaltouch/images/tipsy.gif';
    
    var i = 0;
    for(i=0; i<= 3; i++) 
    pre.src = pre_image_url[i];
}

$(document).ready(function(){
  
  /* open all external links in a new window  */
  $(".ext", this).click(function(){
    window.open(this.href);
    return false;
  });
  
  
  $('#vimeoiFrame').fadeIn(3000).delay(8000);
  if(!(navigator.userAgent.match(/iPhone/i)) || !(navigator.userAgent.match(/iPod/i)) || !(navigator.userAgent.match(/iPad/i)) ){
    $('.info').tipsy({html: true, gravity: 'nw', fade: true, delayIn: 500, delayOut: 900});
    $('a').tipsy({html: true, gravity: 'nw', fade: true, delayIn: 500, delayOut: 900});
  }
  
  var eT = 0;     
      $('#secondary li').hide().each(function(index) {
          $(this).delay(eT*index).fadeIn('slow');
          //$(this).animate({"left": "-=20px"}, 100);
          eT += 5;
      });
})
