// JavaScript Document
$(document).ready(function () {
$.ajax({
        dataType:'jsonp',
        url: 'http://www.pwc.fr/actu_sectorielle.html',
        data: { param:'hello' },
            success:function(response) {
          			   $("#home_actusectorielle").append(response.data);
					   $("#home_actusectorielle").append(' <div id="act1" class="actuplus"><a href="http://www.pwc.fr/information_presse.html" target="_bank">Plus d\'actualité</a><img width="24" height="24" src="/assets/image/tangerine_plus.gif" /></div>');
					
					  



            }
    });
});
