 /*ダイエット*/
 $(document).ready( function() {
      $.ajax( {
      	dataType: 'html',
      	url:'./rsslist.php',
      	success: function(res) {
	    	$('#rssHere').append( res );
	    }
	    } );
    } );
	
/*美容*/	
 $(document).ready( function() {
      $.ajax( {
      	dataType: 'html',
      	url:'./rsslist_biyo.php',
      	success: function(res) {
	    	$('#rssHere2').append( res );
	    }
	    } );
    } );
 
/*エクササイズ*/	
 $(document).ready( function() {
      $.ajax( {
      	dataType: 'html',
      	url:'./rsslist_exercise.php',
      	success: function(res) {
	    	$('#rssHere3').append( res );
	    }
	    } );
    } ); 
 
/*癒し*/	
 $(document).ready( function() {
      $.ajax( {
      	dataType: 'html',
      	url:'./rsslist_healing.php',
      	success: function(res) {
	    	$('#rssHere4').append( res );
	    }
	    } );
    } );  
