/**
 * Created by JetBrains PhpStorm.
 * User: Tof
 * Date: 20/10/11
 * Time: 19:36
 * To change this template use File | Settings | File Templates.
 */
(function($) {
$(document).ready( function() {
    var page_index=$('#content').children().attr('id');
    var excluded_ids =new Array("post-5","post-39","post-41","post-44","post-638");
   // console.log($.inArray(page_index,excluded_ids);
    if (($.inArray(page_index,excluded_ids))==-1){
        $('.page > .entry-content').expander({
            slicePoint:300,
            widow: 2,
            expandEffect: 'show',
            expandText: 'lire plus',
            userCollapseText: '[^]'
        });
    }
    $('.page_item a').click( function(e) {
        if (($(this).attr('href')=="http://www.philippelamberts.eu/qui-suis-je/")||($(this).attr('href')=="http://www.philippelamberts.eu/presse/")){
            e.preventDefault();
        }
    });
});
})(jQuery);

