jQuery.fn.fadeToggle = function(speed, easing, callback) { 
    return this.animate({opacity: 'toggle'}, speed, easing, callback); 
};

//-----JQUERY_DEB--------------
$(document).ready(function() {
	$(function(){
		$("#masquer").bind("click",(function(){if($(this).text()=='Afficher les annonces'){$(this).text("Masquer les annonces");}
			else{$(this).text("Afficher les annonces");};
			$(this).attr("id","afficher");$("#pub").slideToggle()}));
	})
	$(function(){
		$("#b1").bind("click",(function(){$("#containGallery").fadeOut();
		$("#blackcv").fadeToggle();
		$("#blackcv article").slideToggle()}))
	})

	$(function(){
		$("#b2").bind("click",(
			function(){
			$("#containGallery").fadeOut();
			$("#blackcv article").slideUp();
			$("#blackcv").fadeOut();
			if($("#containExp").css('right')=='0px'){$("#containExp").animate({width:'+=70px',right:'+=370px'}, 500)}
			else{$("#containExp").animate({width:'-=70px',right:'-=370px'},500)}
			// $("#containExp").animate({right:'+=370px'},500)
			}))
		})
	
	$(function(){
		$("#b3").bind("click",(function(){
		$("#blackcv article").slideUp();
		$("#blackcv").fadeOut();
		//if($("#containGallery").css('display')=='none'){$("#containGallery").fadeIn('fast')}
		//else{$("#containGallery").fadeOut('fast')}
		$("#containGallery").fadeToggle('200')
		}))
	})
	
	$(function() {$("div#makeMeScrollable").smoothDivScroll({ autoScroll: "onstart", autoScrollDirection: "backandforth", autoScrollStep: 1, autoScrollInterval: 15, startAtElementId: "startAtMe", visibleHotSpots: "always"});})
	//http://www.smoothdivscroll.com
	
	$("#twitter").getTwitter({
		userName: "OnOff_Web",
		numTweets: 4,
		loaderText: "Loading tweets...",
		slideIn: false,
		showHeading: true,
		headingText: "Derniers tweets sur <a href='http://www.twitter.com/OnOff_Web' title='Jonathan V. sur Twitter' title='Jonathan V. sur Twitter'>OnOff_Web <img src='image_v4/twitter_16.png' title='Jonathan V. sur Twitter' alt='Twitter'/></a>",
		showProfileLink: true
	});
	
	$('li:nth-child(even)').append('GAGA');
    $("li:nth-child(2n)").append('GAGA');
	$(function(){$("#containGallery").hide();$("#blackcv").hide();
	});
	
});
//-----JQUERY_FIN--------------

// google analytics
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-15533747-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
//-----ANALYTICS_FIN-------------------------------------------------------------------------
