//remedie global js

function initBanner() {

$("#contact-sticker img").hover(function() {
	$(this).stop(true, true).animate({opacity: 1, filter:''}, 500);
		}, function() {
	$(this).stop(true, true).animate({opacity: 0, filter:'alpha(opacity=0)'}, 500);
	});
        
$(".hoverable").mouseover(function(){
	$(this).addClass("active");
    	}).mouseout(function(){
    $(this).removeClass("active");		
    });
}
