
	$(window).load(function() {
	
	  // override some default options
	  $('.storycontent').expander({
		slicePoint:       700,  // default is 100
		expandText:         ' ', // default is 'read more...'
		collapseTimer:    5000, // re-collapses after 5 seconds; default is 0, so no re-collapsing
		userCollapseText: ' '  	// default is '[collapse expanded text]'
	  });
	 //  $(".storycontent p").append('<strong><a href="/inscription.html">Vous devez &ecirc;tre membre</a></strong>');
	  // $(".details #bonus_6book").show();
	  $(".storycontent p").each(function(index) {
	  		$(this).hide()
      });
		
	  $(".storycontent p").eq(0).show(); 
	  $(".storycontent p").eq(1).show();
	 // $(".storycontent p").eq(1).append('...');
	  // $(".storycontent p").eq(2).show();  
		
	  $(".storycontent").after('<br /><div style="clear:both;" align="center"><strong><a style="color:#F00;" href="javascript:void(0);" onclick="popup()">Pour voir la suite de nos pronostics, devenez membre de Paris-Sportifs.com gratuitement, cliquez-ici !</a></strong></div>');
	  $(".storycontent #bonus_6book").show();
	  //$(".storycontent p").last().show();
	  
	});
