$(document).ready(function(){
	
	//si le document n'est pas un petit ecran ou un mobile
	var largeur =$(window).width();
	if(largeur>=768)
	{
		//animation bulle hover
		$('.bulle').hover(function(){
			$(this).children('.bulleHover').fadeIn();
			}, function() {
			$(this).children('.bulleHover').fadeOut('slow');
		});
		
		//animation portfolio
		$('.portfolio').hover(function(){
			$(this).children('.hover').fadeIn('slow');
			}, function() {
			$(this).children('.hover').fadeOut('fast');
		});
		
		$('.social').hover(function(){
			$(this).children('.socialBox').fadeIn();
			}, function() {
			$(this).children('.socialBox').fadeOut();
		});
	}
	
	//animation bulle hover
	$('.logo img').hover(function(){
		$(this).attr('src', 'images/interface/logohover.png');
		}, function() {
		$(this).attr('src', 'images/interface/logo.png');
	});
	
	//animation bulle
	$('.bulle .img').fadeIn(1500);
	
	//protection spam email
	$('.email').each(function() {
	var text = $(this).text();
	var address = text.replace(" at ", "@");
	$(this).attr('href', 'mailto:' + address);
		$(this).text(address);
	});
	if(largeur>=768)
	{
		$('.presta').click(function(){
			$('.menuSup').slideToggle();
			return false
		});
	}
});

