/**
 * Handle advertiser and editor block opacity fade on the homepage
 */
$(document).ready(function()
{
  $(function() {
    var box = {
        left : $("#col1"),
        right: $("#col3")
    };
    
    box.leftContent  = box.left.find('.information-accueil');
    box.rightContent = box.right.find('.information-accueil');

	box.left.hover(function() {
        box.leftContent.css("opacity","1");
		box.rightContent.css("opacity","0.5");
	});

	box.right.hover(function() {
        box.leftContent.css("opacity","0.5");
        box.rightContent.css("opacity","1");
	});
  });
});
