$(document).ready(function($){

  //div/li fonctionne en a
	//$(".img_txt").click(function(){
	  //get the url from href attribute and launch the url
	  //window.location=$(this).find("a").attr("href"); return false;
	//});

	//effect img home
	$(".galerie ul li img").hover(function(){
		$(this).stop(true, true).fadeTo("fast", 0.8); // on hover
	},function(){
		$(this).stop(true, true).fadeTo("fast", 1.0); // mouseout
	});

	//Colorbox
	$("a[rel='colorboxpopup']").colorbox({
	 transition:"fade",
	 width: "650px"
  });

	jQuery("a[rel='colorboxvideo']").colorbox({
	  iframe: true,
	  innerWidth: 640,
	  innerHeight: 385
	});

	//Home CYCLE BANNIERE
	$('#slider_home div:first, #slider_page div:first')
		.before('<div id="nav"></div><div id="prev">Précédent</div>')
		.after('<div id="next">Suivant</div>')
		.cycle({
		    fx:     'cover',
		    speed:  1000,
		    timeout: 10000,
		    pager:  '#nav',
    		next:   '#next',
    		prev:   '#prev'
		});

	//animate menu accueil
	$('#menu_top ul li:first').hover(function(){
		$('.picto_home').stop().animate({top:'10px'}, 200);
	},function(){
		$('.picto_home').stop().animate({top: 0 }, 200);
	});

	//use the scriptbreaker.com multiple accordion menu
  $("#global_content.univ_green .sidebar_nav").accordion({
      accordion:true,
      speed: 500,
      closedSign: '<img src="' + ((typeof(easytoog_admin) !== 'undefined' && easytoog_admin) ? '/sites/ordec' : '') + '/images/arrow_down.png" with="10px" height="10px" alt="[+]" />',
      openedSign: '<img src="' + ((typeof(easytoog_admin) !== 'undefined' && easytoog_admin) ? '/sites/ordec' : '') + '/images/arrow_up.png" with="10px" height="10px" alt="[-]" />'
  });
  //use the scriptbreaker.com multiple accordion menu
  $("#global_content.univ_pink .sidebar_nav, #global_content.univ_orange .sidebar_nav").accordion({
      accordion:true,
      speed: 500,
      closedSign: '<img src="' + ((typeof(easytoog_admin) !== 'undefined' && easytoog_admin) ? '/sites/ordec' : '') + '/images/arrow_white_down.png" with="10px" height="10px" alt="[+]" />',
      openedSign: '<img src="' + ((typeof(easytoog_admin) !== 'undefined' && easytoog_admin) ? '/sites/ordec' : '') + '/images/arrow_white_up.png" with="10px" height="10px" alt="[-]" />'
  });

  //class active sur onglet
  $('#nav_principal a[href="' + location.pathname + '"]').addClass('active');

	$('#sous-menu').find('.submenu li').each(function() {
	  var $this = $(this);
	  if (typeof easytoog_admin === 'undefined' && $this.find('> ul').length === 0) {
	    $this.removeClass('deploy');
	  }
	});

	//ajout de class current sur menu sidebar
  jQuery('.subMenu li a').each(function()
  {
  	if(location.pathname == jQuery(this).attr('href'))
  	{
  	  jQuery(this).addClass('current').closest('ul.submenu').css('display','block');
  	  return false;
  	}
  });

  //@FIXME
  $('#sous-menu').find('a:not(:contains("span"))').click(function(e) {
    e.preventDefault();
    location.href = this.href;
  });

  // Inscription newsletter
  if(jQuery('#suscribe_newsletter').length > 0)
  {
    console.log('init');
    jQuery('#suscribe_newsletter').newsletterSubscribe('ordec_site', {
      triggerClass: 'validatebutton'
    });
  }
});

