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

	$('#logo, #content img, #newsletter').hover(function() { 
		$(this).stop().animate({'opacity':'0.6'});
	}, function() {
		$(this).stop().animate({'opacity':'1'});
	});
	
	
	////////////////// Menu
	
	$('#vente ul').css('width','0');
	
	$('#vente li').hover(function() { 
		$(this).find('ul').animate({'width':'278px'});
	  },function () {
		$(this).find('ul').animate({'width':'0px'});
	});
	
	////////////////// diapo 
	
	
	
	$('#diaporama').bxSlider({ 
	
	infiniteLoop: true,
	auto: true,
	displaySlideQty: 3,                 // integer - number of slides to display at once
	moveSlideQty: 1,
	autoHover: true

	});
	
	$('.bx-prev').text('');
	$('.bx-next').text('');
	
	$('.diapo-hover').css('height','0');
	

	
	$('.diapo-img').hover(function() { 
		$(this).find('.diapo-hover').stop().animate({'height':'134px'});
		
		}, function() { 
		$(this).find('.diapo-hover').stop().animate({'height':'0'});
	});
	
	
	////////////// recherche 
	$('#search').stop().animate({'height':'0px'});
	$('#rechercher').click(function() {
		var taille = $('#search').height();
		if (taille>10) {
			$('#search').stop().animate({'height':'0px'});	
		}
		else {
		$('#search').stop().animate({'height':'127px'});
		}
	});
	
	
	
	
	
	var new_hauteur = parseInt($('#listing_frame').height()) ;
	$('#txt-listing').css('paddingTop',new_hauteur+'px');




});


