// Application.js

$(document).ready(function(){ 
  
  // Ribbon Nav
  var showNav = function(){ $(this).children('.ribbon').stop().animate( {height:'174px'},{queue:false, duration:400, easing: 'easeOutQuint'} ) };
  var hideNav = function(){ $(this).children('.ribbon').stop().animate( {height:'0px'},{queue:false, duration:400, easing: 'easeInExpo'} ) };

  var hoverConfig = {
    sensitivity: 1, // number = sensitivity threshold (must be 1 or higher; 1 is very low sensitivity)
    interval: 200, // number = milliseconds for onMouseOver polling interval    
    over: showNav, // function = onMouseOver callback (REQUIRED)    
    timeout: 400, // number = milliseconds delay before onMouseOut    
    out: hideNav // function = onMouseOut callback (REQUIRED)
  };

  $('.header .navigation li').hoverIntent(hoverConfig);

  // Tooltip Init Selector - sets what class or id triggers the tooltip
  $(".tooltip").tooltip();
  
  // $('#accordion').accordion({autoHeight: false});

  // Load the images in the Customer Ribbon Nav
  $('#sub_customers #playlist').html("<ul class='playlist'><li><a href='/customers?watch=pivotallabs'><img src='/images/img-customer-pivotal-sm.jpg' />Pivotal Labs</a></li><li><a href='/customers?watch=spongecell'><img src='/images/img-customer-spongecell-sm.jpg' />Spongecell</a></li><li><a href='/customers?watch=bleacherreport'><img src='/images/img-customer-bleacher-sm.jpg' />Bleacher Report</a></li><li><a href='/customers?watch=uservoice'><img src='/images/img-customer-uservoice-sm.jpg' />UserVoice</a></li></ul>");
  $('#imagesCycle').html("<img src='/images/slide0.jpg' />");
  // Start the image rotator
  // $('#imagesCycle').html("<img alt='Golden Gate Bridge, San Francisco, California' src='/images/slide1.jpg' /><img alt='Engine Yard HQ, San Francisco, California' src='/images/slide2.jpg' /><img alt='Ezra Zygmuntowicz in the office' src='/images/slide3.jpg' /><img alt='A day at Engine Yard' src='/images/slide4.jpg' />");
  // $('#imagesCycle').cycle();
  // $("a[rel=print]").click(function() {window.print()});
});

// Vimeo Video Player
var loadVideo = function(videoId, height, width){  
  $('.player').html("<object width='"+width+"' height='"+height+"'><param name='allowfullscreen' value='true' /><param name='allowscriptaccess' value='always' /><param name='wmode' value='opaque' /><param name='movie' value='http://vimeo.com/moogaloop.swf?clip_id="+videoId+"&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=1' /><embed src='http://vimeo.com/moogaloop.swf?clip_id="+videoId+"&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=1' type='application/x-shockwave-flash' allowfullscreen='true' allowscriptaccess='always' wmode='opaque' width='"+width+"' height='"+height+"'></embed></object>");
};
var popVideo = function(videoId, height, width){
  $('#inlineContent').html("<object width='"+width+"' height='"+height+"'><param name='allowfullscreen' value='true' /><param name='allowscriptaccess' value='always' /><param name='wmode' value='opaque' /><param name='movie' value='http://vimeo.com/moogaloop.swf?clip_id="+videoId+"&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=1' /><embed src='http://vimeo.com/moogaloop.swf?clip_id="+videoId+"&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=1' type='application/x-shockwave-flash' allowfullscreen='true' allowscriptaccess='always' wmode='opaque' width='"+width+"' height='"+height+"'></embed></object>");
};

// Update HTML Block
var loadContent = function(addr){
  $('#contentBlock').load(addr + " #pageContent");
}