

//volet thumbs
jQuery.fn.masque = function(classe) {

$(' .thumb').hover(function(){
			
$(' .thumb h2').find(classe).stop().animate({height:'109px',opacity: '0.9'},400);
},function () { 
$(' .thumb h2').find(classe).stop().animate({height:'0',opacity: '0'}, 400);
});
}   

jQuery.fn.masque1 = function(classe) {

$('.thumb1').hover(function(){
			
$(' .thumb1 h2').find(classe).stop().animate({height:'109px',opacity: '0.9'},400);
},function () { 
$(' .thumb1 h2').find(classe).stop().animate({height:'0',opacity: '0'}, 400);
});
}   

$(document).ready(function(){$(' .thumb h2').masque('.masque');}); 
$(document).ready(function(){$(' .thumb1 h2').masque1('.masque');}); 



