$(document).ready( function(){ 
	$('#portfolio').innerfade({ speed: 'slow', timeout: 8000, type: 'sequence', containerheight: '220px' }); 
		$.ajax({
		url: "network.php",
		cache: false,
		success: function(html){
			$("#network").empty();
			$("#network").append(html);
			}
			});

  $jScroller.add("#scroller_container","#scroller","left",5);
  $jScroller.start();

}); 
