jQuery(document).ready(function(){	
	//featurelist
	jQuery('.feature_list #tabs li a').featureList({
		output			:	'#output li',
		start_item		:	0
	});
  
  // !menu_principal dropdown
	jQuery('.dropdown').each(function () {
		jQuery(this).parent().eq(0).hover(function () {
			jQuery('.dropdown:eq(0)', this).show();
		}, function () {
			jQuery('.dropdown:eq(0)', this).hide();
		});
	});
	
	
	//Pretty photo
	if(jQuery.isFunction(jQuery.fn.prettyPhoto))
  {
    jQuery('a[href$=".flv"]').click(function()
    {
      var sitename = 'aai';
      var flashvars = '&amp;autoplay=1&amp;showvolume=1&amp;showfullscreen=1&amp;showplayer=always&amp;width=530&amp;height=320';
      var flv_path = jQuery(this).attr('href');

      if(flv_path.indexOf('/easylink/') !== -1)
      {
        //Admin
        flv_path = flv_path.replace(/\/([a-z0-9_]+\.php\/)?easylink\/document/i, '/sites/' + sitename + '/documents');
        jQuery(this).attr('href', '/sites/' + sitename + '/images/player_flv_maxi.swf?width=530&height=320&flashvars=flv=' + flv_path + flashvars);
      }
      else if(flv_path.indexOf('player_flv_maxi.swf') === -1) //test pour eviter de refaire le remplacement si on clique plusieurs fois
      {
        //Public
        jQuery(this).attr('href', '/images/player_flv_maxi.swf?width=530&height=320&flashvars=flv=' + flv_path + flashvars);
      }

      jQuery(this).attr('title', '');
    });

    jQuery('a[rel^="prettyPhoto"], a[href$=".flv"]').prettyPhoto({
      theme:      'facebook',
      showTitle:  false
    });
  }
  
  // !vertical align .bt_fleche
	jQuery('#footcol_right ul li.bt_fleche a span').vAlign();
		  

});
