$(document).ready(function() {

	// select #flowplanes and make it scrollable. use circular and navigator plugins
	$("#scroller_home_content").scrollable({size: 1, vertical: true, clickable: false}).circular().navigator({

		// select #flowtabs to be used as navigator
		navi: "#scroller_home_nav",

		// select A tags inside the navigator to work as items (not direct children)
		naviItem: 'a',

		// assign "current" class name for the active A tag inside navigator
		activeClass: 'current'

	});
    $(".info").mouseover(function(){
      $("img.first", this).animate({ 
        opacity: 0
      }, { queue:false, duration:200 } );
          }).mouseout(function(){
      $("img.first", this).animate({ 
        opacity: 1
      }, { queue:false, duration:200 } );
    });
    
	//Tooltips
    $(".soporte").tooltip({position: 'center left'});
	
	// setup ul.tabs to work as tabs for each div directly under div.panes 
	$("ul.tabs").tabs("div.panes > div");    
});
