forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_businessWeek3.html
More file actions
1107 lines (860 loc) · 61.5 KB
/
Copy pathtest_businessWeek3.html
File metadata and controls
1107 lines (860 loc) · 61.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title>Here Comes Apple's Real TV - BusinessWeek</title>
<meta name="headline" content="Here Comes Apple's Real TV"/>
<meta name="keywords" content="Apple, Apple CEO, Google, Television, Cable & Wireless, Netflix, Steve Jobs, Comcast, cable, cable TV, hulu, Roku" />
<meta name="description" content= "A bold, new Apple TV set would replace today’s cable systems, game consoles, and 3D goggles—and launch a war with cable providers"/>
<meta name="channel" content="Technology"/>
<meta name="strap" content="Consumer Electronics"/>
<meta name="source" content="Consumer Electronics"/>
<meta name="syndicate" content="Apple;Technology;Television;consumer electronics;cable TV;News;Entertainment;viewpoint;video games;Media;Movie Industry;Digital Entertainment;Advertising"/>
<meta name="tickers" content="Netflix(NFLX),Apple(AAPL),Piper Jaffray(PJC),TiVo(TIVO),Nielsen(NLSN),Microsoft(MSFT),Comcast(CMCSA),Forrester Research(FORR),AT&T(T),Nintendo(NTDOY),Google(GOOG)" />
<meta name="mediatype" content="story"/>
<meta name="pub_date" content="20110913"/>
<meta name="time" content="20:50:40"/>
<meta name="IsColumn" content= "yes" />
<meta name="author" content="Ben Kunz"/>
<meta property="fb:admins" content="1617206,1502271052"/>
<meta property="og:site_name" content="BusinessWeek"/>
<meta property="fb:admins" content="2031488"/>
<meta property="fb:app_id" content="171403662886781" />
<meta property="og:type" content="article"/>
<meta property="og:title" content="Here Comes Apple's Real TV - BusinessWeek"/>
<meta property="og:url" content="http://www.businessweek.com/technology/here-comes-apples-real-tv-09132011.html"/>
<!-- chartbeat script to be placed inside head tag -->
<script type="text/javascript">
var _sf_startpt=(new Date()).getTime();
</script>
<link href="http://static.btrd.net/css/45678901/jquery-ui-1.8.9.custom.css" rel="Stylesheet" type="text/css" media="screen" />
<link href="http://static.btrd.net/css/45678901/screen.css" rel="Stylesheet" type="text/css" media="screen" />
<link href="http://static.btrd.net/css/45678901/story.css" rel="Stylesheet" type="text/css" media="screen" />
<link href="http://static.btrd.net/css/45678901/colorbox.css" rel="Stylesheet" type="text/css" media="screen" />
<!--[if IE]>
<link href="ie_screen.css" rel="stylesheet" type="text/css" />
<![endif]-->
<script src="http://static.btrd.net/js/34567890/jquery/jquery-1.5.min.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/jquery/jquery-ui.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/jquery/plugin/jcarousellite_1.0.1.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/cookie_helper.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/base.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/jquery.colorbox.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/common.js" type="text/javascript" ></script>
<script src="http://static.btrd.net/js/34567890/analytics/audience_science_header.js" type="text/javascript" ></script>
<script src="http://platform.twitter.com/widgets.js" ></script>
<script src="http://bit.ly/javascript-api.js?version=latest&login=bloombergbw&apiKey=R_2ae449dc50049042c65cbda330991ab3" type="text/javascript" charset="utf-8" ></script>
<script src="https://apis.google.com/js/plusone.js" type="text/javascript" ></script>
</head>
<body class="technology story story" data-version-description="base">
<script type="text/javascript">
//<![CDATA[
var ga_host=window.location.hostname;
if((ga_host == "www.businessweek.com") || (ga_host == "businessweek.com") || (ga_host == "bx.businessweek.com") || (ga_host == "investing.businessweek.com")) {
var ga_account="UA-11413116-6";
} else {
var ga_account="UA-11413116-5";
}
var _gaq = _gaq || [];
_gaq.push(['_setAccount', ga_account]);
_gaq.push(['_setDomainName', ".businessweek.com"]);
_gaq.push(['_setAllowHash', false]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
//]]>
</script>
<div id="top_strip">
<div class="full_width_container">
<ul>
<li><a href="http://www.bloomberg.com" id="bb_top_link" title="Bloomberg.com">Bloomberg.com</a></li>
<li><a href="http://bx.businessweek.com" id="bx_top_link" title="Business Exchange">Business Exchange</a></li>
</ul>
<form action="http://search.businessweek.com/Search" method="get">
<fieldset>
<label for="search_text_input" class="hidden_search_label">Search</label>
<span><input type="text" name="search_text_input" id="search_text_input" /></span>
<button type="submit" id="submit_search_button" class="submit_search_button">Search</button>
</fieldset>
</form>
</div>
</div>
<div id="logo_bar">
<div class="full_width_container">
<div id="ad-topright" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("topright", "400x45,1x1", "dcopt=ist", 1, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=topright;sz=400x45,1x1;dcopt=ist;tile=1;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=topright;sz=400x45,1x1;dcopt=ist;tile=1;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
<a href="/" id="logo" alt="Businessweek Logo" title="Bloomberg Businessweek">Bloomberg Businessweek</a>
<div class="clear"></div>
</div>
</div>
<div id="nav">
<div class="full_width_container">
<ul>
<li id="home_nav_link" class="top_level">
<a href="/" title="home">Home</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/blogs/" title="Blogs">Blogs</a></li>
<li><a href="http://www.businessweek.com/slideshows/" title="Slide Shows">Slide Shows</a></li>
<li><a href="http://www.businessweek.com/columnists/letter_a/" title="Columnists">Columnists</a></li>
<li><a href="http://www.businessweek.com/sr/index.htm" title="Special Reports">Special Reports</a></li>
<li><a href="http://www.businessweek.com/lifestyle/" title="Lifestyles">Lifestyle</a></li>
<li><a href="http://www.businessweek.com/debateroom/" title="The Debate Room">The Debate Room</a></li>
<li><a href="http://www.businessweek.com/magazine/" title="Magazine">Magazine</a></li>
<li><a href="http://feedroom.businessweek.com/" title="Videos">Videos</a></li>
<li><a href="http://www.businessweek.com/newsletters.htm" title="Newsletters">Newsletters</a></li>
</ul>
</li>
<li id="finance_nav_link" class="top_level">
<a href="/finance" title="Finance">Finance</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/finance/" title="Finance Home">Finance Home</a></li>
<li><a href="http://investing.businessweek.com/research/people/overview/overview.asp" title="People Overview">People Overview</a></li>
<li><a href="http://investing.businessweek.com/research/company/overview/overview.asp" title="Companies">Companies</a></li>
<li><a href="http://www.businessweek.com/investor/realestate/" title="Real Estate Investing">Real Estate Investing</a></li>
<li><a href="http://www.businessweek.com/investor/economy/" title="Economy">Economy</a></li>
<li><a href="http://www.businessweek.com/investor/retirement/" title="Retirement Planning">Retirement Planning</a></li>
<li><a href="http://investing.businessweek.com/research/sectorandindustry/news/news.asp" title="Industry News">Industry News</a></li>
<li><a href="http://investing.businessweek.com/research/sectorandindustry/overview/sectorlanding.asp?region=us" title="Sectors & Industries">Sectors & Industries</a></li>
<li><a href="http://www.businessweek.com/investing/insights/blog/" title="Investing Blog">Investing Blog</a></li>
<li><a href="http://www.businessweek.com/investor/stocks.html" title="Stocks">Stocks</a></li>
<li><a href="http://investing.businessweek.com/research/learningcenter/overview/overview.asp" title="Learning Center">Learning Center</a></li>
<li><a href="http://investing.businessweek.com/research/markets/overview/overview.asp" title="Stocks & Markets">Stocks & Markets</a></li>
</ul>
</li>
<li id="technology_nav_link" class="top_level">
<a href="/technology" title="Technology">Technology</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/technology/" title="Technology Home">Technology Home</a></li>
<li><a href="http://www.businessweek.com/technology/internet/" title="Internet">Internet</a></li>
<li><a href="http://www.businessweek.com/technology/ceo_guide/" title="CEO Tech Guide">CEO Tech Guide</a></li>
<li><a href="http://www.businessweek.com/technology/investing/" title="Investing">Investing</a></li>
<li><a href="http://www.businessweek.com/technology/columnists/" title="Columnists">Columnists</a></li>
<li><a href="http://www.businessweek.com/technology/telecom/" title="Mobile & Wireless">Mobile & Wireless</a></li>
<li><a href="http://www.businessweek.com/technology/computers/" title="Computers">Computers</a></li>
<li><a href="http://www.businessweek.com/technology/reviews/" title="Product Reviews">Product Reviews</a></li>
<li><a href="http://www.businessweek.com/technology/consumer/" title="Consumer Electronics">Consumer Electronics</a></li>
<li><a href="http://www.businessweek.com/technology/software/" title="Software">Software</a></li>
<li><a href="http://www.businessweek.com/technology/entertainment/" title="Digital Entertainment">Digital Entertainment</a></li>
<li><a href="http://www.businessweek.com/technology/wildstrom.htm" title="Hands On">Hands On</a></li>
</ul>
</li>
<li id="innovation_nav_link" class="top_level">
<a href="/innovation" title="Innovation">Innovation</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/innovation/" title="Innovation Home">Innovation Home</a></li>
<li><a href="http://www.businessweek.com/innovate/gameroom/" title="Game Room">Game Room</a></li>
<li><a href="http://www.businessweek.com/innovate/architecture/" title="Architecture">Architecture</a></li>
<li><a href="http://www.businessweek.com/innovate/global_index/" title="Innovation Index">Innovation Index</a></li>
<li><a href="http://www.businessweek.com/innovate/carbuff/" title="Auto Design">Auto Design</a></li>
<li><a href="http://www.businessweek.com/innovate/brandequity/" title="Marketing">Marketing</a></li>
<li><a href="http://www.businessweek.com/the_thread/brandnewday/" title="Brand Blog">Brand Blog</a></li>
<li><a href="http://www.businessweek.com/innovate/FineOnMedia/" title="Media Blog" >Media Blog</a></li>
<li><a href="http://www.businessweek.com/innovation/columnists/" title="Columnist">Columnists</a></li>
<li><a href="http://www.businessweek.com/innovate/next/" title="NEXT Blog">NEXT Blog</a></li>
<li><a href="http://www.businessweek.com/innovate/design/" title="Design">Design</a></li>
</ul>
</li>
<li id="management_nav_link" class="top_level">
<a href="/management" title="Management">Management</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/management/" title="Management Home">Management Home</a></li>
<li><a href="http://www.businessweek.com/managing/columnists/" title="Columnists">Columnists</a></li>
<li><a id="business_schools" href="http://www.businessweek.com/business-schools/" title="Business Schools">Business Schools</a></li>
<li><a href="http://jobs.businessweek.com/a/all-jobs/list/" title="Jobs">Jobs</a></li>
<li><a href="http://www.businessweek.com/managing/board_of_directors/" title="Borad of Directors">Board of Directors</a></li>
<li><a href="http://www.businessweek.com/managing/company/" title="Leadership">Leadership</a></li>
<li><a href="http://www.businessweek.com/lifestyle/books.htm" title="Book Reviews">Book Reviews</a></li>
<li><a href="http://www.businessweek.com/careers/managementiq/" title="Management IQ Blog">Management IQ Blog</a></li>
<li><a href="http://www.businessweek.com/managing/career/" title="Career Management">Career Management</a></li>
<li><a href="http://www.businessweek.com/managing/team/" title="Team Management">Team Management</a></li>
<li><a href="http://www.businessweek.com/managing/interactive_case_studies/" title="Case Studies">Case Studies</a></li>
</ul>
</li>
<li id="small_business_nav_link" class="top_level">
<a href="/small-business" title="Small Business">Small Business</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/small-business/" title="Small Business Home">Small Business Home</a></li>
<li><a href="http://www.businessweek.com/smallbiz/running_small_business/" title="Small Business Blog">Small Business Blog</a></li>
<li><a href="http://www.businessweek.com/smallbiz/finance/" title="Financing">Financing</a></li>
<li><a href="http://www.businessweek.com/smallbiz/smartanswers/" title="Smart Answers">Smart Answers</a></li>
<li><a href="http://www.businessweek.com/smallbiz/policy/" title="Policy">Policy</a></li>
<li><a href="http://www.businessweek.com/smallbiz/gettingstarted/" title="Starting a Business">Starting a Business</a></li>
<li><a href="http://www.businessweek.com/smallbiz/salesmarketing/" title="Sales and Marketing">Sales & Marketing</a></li>
<li><a href="http://www.businessweek.com/smallbiz/viewpoint/" title="Viewpoints">Viewpoints</a></li>
</ul>
</li>
<li id="global_nav_link" class="top_level">
<a href="/global" title="Global">Global</a>
<ul class="sub_menu">
<li><a href="http://www.businessweek.com/global/" title="Global Home">Global Home</a></li>
<li><a href="http://www.businessweek.com/globalbiz/blog/europeinsight/" title="European Insight Blog">Europe Insight Blog</a></li>
<li><a href="http://www.businessweek.com/asia/" title="Asia">Asia</a></li>
<li><a href="http://www.businessweek.com/globalbiz/blog/eyeonasia/" title="Eye on Asai Blog">Eye on Asia Blog</a></li>
<li><a href="http://www.businessweek.com/europe/" title="Europe">Europe</a></li>
</ul>
</li>
</ul>
<div id="ipad_link"><a href="http://itunes.apple.com/us/app/bloomberg-businessweek/id421216878?mt=8">Get our new FREE iPad app now</a></div>
</div>
</div>
<div id="top-ad-wrapper">
<div id="ad-top" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("top", "728x90,980x250,980x115,980x418,980x66,980x110,1x1", "", 2, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=top;sz=728x90,980x250,980x115,980x418,980x66,980x110,1x1;tile=2;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=top;sz=728x90,980x250,980x115,980x418,980x66,980x110,1x1;tile=2;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
</div>
<div id="article_body_container">
<div class="full_width_container">
<div id="column_2" class="right rail">
<div class="column_padding">
<div id="content_slider" class="module">
<h4><a href="http://www.businessweek.com/technology/">More in Technology</a></h4>
<a href="javascript:;" class="shift step_prev">Left</a>
<div class="carousel_container">
<ul>
<li>
<a href="http://images.businessweek.com/slideshows/20110921/marvels-of-medical-technology/" title="Marvels of Medical Technology" rel="external">
<img src="http://dlimages.businessweek.com/imageserve/03jQ0xB9SSbIS/110x100.jpg" alt="Marvels of Medical Technology" />
<span></span>
<strong>SLIDE SHOW</strong>
</a>
</li>
<li>
<a href="http://www.businessweek.com/technology/special-reports/ceo-guide-to-the-us-technologyhiring-boom.html" title="CEO Guide to the U.S. Technology/Hiring Boom" rel="external">
<img src="http://images.businessweek.com/cms/2011-08-01/0801_techss2.jpg" alt="CEO Guide to the U.S. Technology/Hiring Boom" />
<span></span>
<strong>SPECIAL REPORT</strong>
</a>
</li>
<li>
<a href="http://www.businessweek.com/video#video=c5YmJ0Mjps4X4hxTePZxCfvaJnXBo92t" title="Companies Use Web to Uncover Rivals' Secrets" rel="external">
<img src="http://cdn.videos.bloomberg.com/c5YmJ0Mjps4X4hxTePZxCfvaJnXBo92t/GNAZIvgsh-AMAmjn5iMDoxOjBhOwYpZ3" alt="Companies Use Web to Uncover Rivals' Secrets" />
<span></span>
<strong>VIDEO</strong>
</a>
</li>
<li>
<a href="http://images.businessweek.com/slideshows/20110919/famous-cases-of-corporate-espionage/" title="Famous Cases of Corporate Espionage" rel="external">
<img src="http://dlimages.businessweek.com/imageserve/03ke06CbKZ5SY/110x100.jpg" alt="Famous Cases of Corporate Espionage" />
<span></span>
<strong>SLIDE SHOW</strong>
</a>
</li>
<li>
<a href="http://www.businessweek.com/innovation/special-reports/innovation-and-engineering-in-america-0711.html" title="Innovation and Engineering in America" rel="external">
<img src="http://images.businessweek.com/cms/2011-07-14/mobile_payments30__01__1601.jpg" alt="Innovation and Engineering in America" />
<span></span>
<strong>SPECIAL REPORT</strong>
</a>
</li>
<li>
<a href="http://www.businessweek.com/video#video=UycXJzMjrP9I0IeYh6ifWrPOrvUaFFN5" title="Apple Dividend, Buyback Outlook" rel="external">
<img src="http://cdn.videos.bloomberg.com/UycXJzMjrP9I0IeYh6ifWrPOrvUaFFN5/pHBNxaSFT47BiZsn5iMDoxOjBhOwYpZ3" alt="Apple Dividend, Buyback Outlook" />
<span></span>
<strong>VIDEO</strong>
</a>
</li>
</ul>
</div>
<a href="javascript:;" class="shift step_next">Right</a>
<div class="clear"></div>
</div>
<div id="ad-right2" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("right2", "300x250,300x600,1x1", "", 3, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=right2;sz=300x250,300x600,1x1;tile=3;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=right2;sz=300x250,300x600,1x1;tile=3;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
<div id="most_popular_stories" class="module popular">
<h4>Most Popular Content</h4>
<div class="tabs">
<ul>
<li><a href="#most_read_tab">Read</a></li>
<li><a href="#most_emailed_tab">Emailed</a></li>
<li><a href="#most_discussed_tab">Discussed</a></li>
<li><a href="#most_slide_shows_tab">Slide Shows</a></li>
</ul>
<div id="most_read_tab">
<ol>
<li><a target="_top" href="http://www.businessweek.com/technology/what-to-expect-at-apples-iphone-5-event-09272011.html?campaign_id=rss_topStories">What to Expect at Apple's iPhone 5 Event</a></li>
<li><a target="_top" href="http://www.businessweek.com/management/ten-things-only-bad-managers-say-09232011.html?campaign_id=rss_topStories">Ten Things Only Bad Managers Say</a></li>
<li><a target="_top" href="http://www.businessweek.com/lifestyle/which-is-americas-best-city-09202011.html?campaign_id=rss_topStories">Which Is America's Best City?</a></li>
<li><a target="_top" href="http://www.businessweek.com/magazine/dan-ariely-how-to-pay-people-09222011.html?campaign_id=rss_topStories">Dan Ariely: How to Pay People</a></li>
<li><a target="_top" href="http://www.businessweek.com/technology/oracle-eyes-industryspecific-software-buys-09272011.html?campaign_id=rss_topStories">Oracle Eyes Industry-Specific Software Buys</a></li>
</ol>
<a href="http://www.businessweek.com/topStories/rss/topStories.rss" class="rss_link">RSS Feed: Most Read Stories</a>
</div>
<div id="most_emailed_tab">
<ol>
<li><a target="_top" href="http://www.businessweek.com/management/ten-things-only-bad-managers-say-09232011.html?campaign_id=rss_topEmailedStories">Ten Things Only Bad Managers Say</a></li>
<li><a target="_top" href="http://www.businessweek.com/lifestyle/which-is-americas-best-city-09202011.html?campaign_id=rss_topEmailedStories">Which Is America's Best City?</a></li>
<li><a target="_top" href="http://www.businessweek.com/technology/what-to-expect-at-apples-iphone-5-event-09272011.html?campaign_id=rss_topEmailedStories">What to Expect at Apple's iPhone 5 Event</a></li>
<li><a target="_top" href="http://www.businessweek.com/magazine/the-feud-at-the-top-of-morgan-stanley-09222011.html?campaign_id=rss_topEmailedStories">The Feud at the Top of Morgan Stanley</a></li>
<li><a target="_top" href="http://www.businessweek.com/magazine/dan-ariely-how-to-pay-people-09222011.html?campaign_id=rss_topEmailedStories">Dan Ariely: How to Pay People</a></li>
</ol>
<a href="http://www.businessweek.com/topStories/rss/topEmails.rss" class="rss_link">RSS Feed: Most E-mailed Stories</a>
</div>
<div id="most_discussed_tab">
<ol>
<li><a target="_top" href="http://www.businessweek.com/magazine/content/10_28/b4186077432338.htm?campaign_id=rss_topDiscussed">Ben Hooper: Scoring on Soccer's Rich History</a></li>
<li><a target="_top" href="http://www.businessweek.com/lifestyle/content/apr2011/bw20110426_893708.htm?campaign_id=rss_topDiscussed">Memphis Suburb Is Fastest-Growing City in U.S.</a></li>
<li><a target="_top" href="http://www.businessweek.com/smallbiz/content/mar2008/sb2008036_342155.htm?campaign_id=rss_topDiscussed">Buying a Franchise with Bad Credit</a></li>
<li><a target="_top" href="http://www.businessweek.com/lifestyle/content/dec2010/bw20101214_289257.htm?campaign_id=rss_topDiscussed">America's Best, Affordable Places to Raise Kids</a></li>
<li><a target="_top" href="http://www.businessweek.com/magazine/content/10_48/b4205098143983.htm?campaign_id=rss_topDiscussed">General Tso, Meet Steven Covey</a></li>
</ol>
<a href="http://www.businessweek.com/topStories/rss/topComments.rss" class="rss_link">RSS Feed: Most Discussed Stories</a>
</div>
<div id="most_slide_shows_tab">
<ol>
<li><a target="_top" href="http://images.businessweek.com/slideshows/20110920/america-s-50-best-cities/?campaign_id=rss_topSlideShows">America's 50 Best Cities</a></li>
<li><a target="_top" href="http://images.businessweek.com/slideshows/20110922/bloomberg-businessweek-first-annual-how-to-guide/?campaign_id=rss_topSlideShows">Bloomberg Businessweek First Annual 'How To' Guide</a></li>
<li><a target="_top" href="http://images.businessweek.com/slideshows/20110906/bloomberg-markets-most-influential-50/?campaign_id=rss_topSlideShows">Bloomberg Markets Most Influential 50</a></li>
<li><a target="_top" href="http://images.businessweek.com/slideshows/20101214/the-best-places-to-raise-your-kids-2011/?campaign_id=rss_topSlideShows">The Best Places to Raise Your Kids 2011</a></li>
<li><a target="_top" href="http://images.businessweek.com/ss/09/09/0903_places_to_launch_a_career/index.htm?campaign_id=rss_topSlideShows">Best Places to Launch a Career</a></li>
</ol>
<a href="http://www.businessweek.com/topStories/rss/topSlides.rss" class="rss_link">RSS Feed: Most Popular Slide Shows</a>
</div>
</div>
</div>
<!-- ADs by Google -->
<div id="text-ad">
<!-- Adding google_ad_channel Dynamically -->
<script type="text/javascript">var google_ad_channel = "1415825908+7383565445";</script>
<!-- BEGIN: Google Ad code -->
<script type="text/javascript" src="http://static.btrd.net/js/34567890/bw_google_ad.js"></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<!-- END: Google Ad code -->
</div>
<!-- ADs by Google Ends -->
<div id="ad-right3" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("right3", "300x250,1x1", "", 4, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=right3;sz=300x250,1x1;tile=4;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=right3;sz=300x250,1x1;tile=4;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
<div id="bw_mall" class="module">
<h4>BW Mall - Sponsored Links</h4>
<script type="text/javascript" src="http://jlinks.industrybrains.com/jsct?sid=046&ct=BUSINESSWEEK_PERSONAL_TECHNOLOGY&tr=TECHNOLOGY&num=5&layt=1&fmt=simp"></script>
<p><a href="http://www.industrybrains.com/businessweek/" rel="nofollow" class="buy-link">Buy a link now!</a></p>
</div>
<div id="bottom-ad-wrapper" class="clearfix">
<div id="ad-bottom1" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("bottom1", "120x60,1x1", "", 6, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=bottom1;sz=120x60,1x1;tile=6;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=bottom1;sz=120x60,1x1;tile=6;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
<div id="ad-bottom2" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("bottom2", "120x60,1x1", "", 7, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=bottom2;sz=120x60,1x1;tile=7;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=bottom2;sz=120x60,1x1;tile=7;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
</div>
<div id="ad-bottom" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("bottom", "150x1,10x1,1x1", "", 8, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=bottom;sz=150x1,10x1,1x1;tile=8;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=bottom;sz=150x1,10x1,1x1;tile=8;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
</div>
</div>
<div id="column_1" class="left main">
<div class="column_padding">
<!-- begin article content template -->
<div id="article_top">
<span class="text_size">
<span>text size:</span>
<a href="javascript:;" class="font_small disabled">T</a>
<a href="javascript:;" class="font_large">T</a>
</span>
<span class="accent">Viewpoint</span>
<span class="published_date">September 13, 2011, 8:50 PM EDT</span>
</div>
<div id="article_body">
<h1>Here Comes Apple's Real TV</h1>
<h2>A bold, new Apple TV set would replace today’s cable systems, game consoles, and 3D goggles—and launch a war with cable providers</h2>
<p class="author">By
<a href="/bios/ben-kunz-329.html" title="Ben Kunz" rel="author">Ben Kunz</a> </p>
<div class="right inset">
<div class="padding">
<div id="related_items" class="module">
<h4>Related Items</h4>
<ul>
<li>
<a href="http://www.businessweek.com/news/2011-09-27/telecom-carriers-must-combine-to-compete-providence-equity-says.html" title="Telecom Carriers Must Combine to Compete, Providence Equity Says">Telecom Carriers Must Combine to Compete, Providence Equity Says</a>
</li>
<li>
<a href="http://www.businessweek.com/news/2011-09-27/apple-to-introduce-new-iphone-at-oct-4-event-in-california.html" title="Apple to Introduce New IPhone at Oct. 4 Event in California">Apple to Introduce New IPhone at Oct. 4 Event in California</a>
</li>
<li>
<a href="http://www.businessweek.com/news/2011-09-26/netflix-gets-57-cheaper-for-amazon-to-google-acquirer-real-m-a.html" title="Netflix Gets 57% Cheaper for Amazon-to-Google Acquirer: Real M&A">Netflix Gets 57% Cheaper for Amazon-to-Google Acquirer: Real M&A</a>
</li>
<li>
<a href="http://www.businessweek.com/news/2011-09-26/netflix-reaches-streaming-pact-with-dreamworks-animation.html" title="Netflix Reaches Streaming Pact With DreamWorks Animation">Netflix Reaches Streaming Pact With DreamWorks Animation</a>
</li>
<li>
<a href="http://www.businessweek.com/news/2011-09-26/samsung-tablet-faces-further-delay-in-australia-amid-apple-row.html" title="Samsung Tablet Faces Further Delay in Australia Amid Apple Row">Samsung Tablet Faces Further Delay in Australia Amid Apple Row</a>
</li>
</ul>
</div>
<div id="story_tools" class="module">
<input type="hidden" name="link" id = "qlink"/>
<h4>Story Tools</h4>
<ul>
<li id="stFB">
<iframe frameborder="0" scrolling="no" allowtransparency="true" style="border: medium none; overflow: hidden; width: 186px; height: 25px;" id="fb_like_area" name="fb_like_area"></iframe>
</li>
<li id="stTwt" class="social">
<iframe name="twit" id="twit" allowtransparency="true" frameborder="0" scrolling="no" style="width:130px; height:20px;"></iframe>
</li>
<li id="stLinkIn" class="actve"> </li>
<li id="gplusid"> </li>
<li id="li_tool_link_bx"><a class="tools_link bx" href="javascript:void(window.open('http://bx.businessweek.com/api/add-article-to-bx.tn?url=http%3A%2F%2Fwww.businessweek.com%2Ftechnology%2Fhere-comes-apples-real-tv-09132011.html', 'bx','toolbar=no,width=610,height=670,resizable=yes,scrollbars=yes'));" title="add to business exchange">add to Business Exchange</a></li>
<li id="email" class="non_social"><a class="tools_link email" href="/forms/emailthis/form.html?url=http%3A%2F%2Fwww.businessweek.com%2Ftechnology%2Fhere-comes-apples-real-tv-09132011.html&title=Here%20Comes%20Apple's%20Real%20TV&campaign_id=eml" title="E-mail" rel="nofollow">E-mail</a></li>
<li id="stPrint" class="non_social_print"><a class="tools_link print" href="/printer/technology/here-comes-apples-real-tv-09132011.html" title="Print" rel="nofollow">Print</a></li>
<li id="stComment" class="non_social">
<a class="tools_link reader_comment" href="#reader_comments">Comment</a>
</li>
</ul>
<script type="text/javascript">
applyStoryTools("story", "http://www.businessweek.com/technology/here-comes-apples-real-tv-09132011.html")
</script>
</div>
</div>
</div>
<p class="note">(Corrects 10th paragraph to show the Wii is from Nintendo, not Sony.)</p>
<div id="columnist_image" class="columnist">
<a href="/bios/ben-kunz-329.html">
<img width="75" height="75" src="http://images.businessweek.com/gen/headshots/75x75/ben_kunz3.jpg" />
</a>
</div>
<p>Get ready, America, because by Christmas 2012 you will have an Apple TV in your living room. I don’t mean the cute little box now called “Apple TV” that plugs into your set to stream <span class="ticker" data-symbol="NFLX">Netflix</span>, but the real deal—a flat-panel <span class="ticker" data-symbol="AAPL">Apple</span> television set tied to the company’s online ecosystem and designed as only Apple can do it.</p>
<p>There’s a $14 billion rationale for this prediction but first, let’s explore the rumors. This summer <span class="ticker" data-symbol="PJC">Piper Jaffray</span> analyst Gene Munster dug through component suppliers and found evidence that Apple is gearing up to produce a real TV set by late 2012. Venture capitalist Stewart Alsop, a former board member at <span class="ticker" data-symbol="TIVO">TiVo</span>, has published rumors that Apple has a television coming. And Steve Jobs himself hinted last year that Apple might build a real television unit.</p>
<p>“The television industry … pretty much undermines innovation in the sector,” Jobs said at the All Things Digital Conference in July 2010. “The only way this is going to change is if you start from scratch, tear up the box, redesign, and get it to the consumer in a way that they want to buy it.”</p>
<p>Jobs’s quote is good advice for his successor as chief executive officer, Tim Cook, who needs a hit. The TV industry is changing more than at any time in the past 50 years, and billions of dollars are going into play for the winners. As Apple crests in the phone and tablet markets, its investors will want a new frontier.</p>
<p>TV is the future because it remains king of all media. While handsets get hyped, the typical U.S. consumer watches 5 hours and 9 minutes of TV a day, according to <span class="ticker" data-symbol="NLSN">Nielsen</span>, and even younger adults 18 to 24 years old—the supposed digital generation—view 3 hours and 30 minutes on televisions daily, vs. only 49 minutes on the Web and 20 minutes on mobile. We all love to lean back. With so much of the consumer’s time, TV has become bloated with waste. The average U.S. home receives 130 cable channels but “tunes to”—or punches in the exact channel number on the remote—just 18 channels a year. Channel surfing has died. A whopping 86% of available channels are never used by an individual viewer.</p>
<h3>Lots of Disenchanted TV Subscribers</h3>
<p>Consumers pay a lot for all this video waste and they don’t like it. The average cable bill is $75 per month, which means that each year 83 million households pay $74 billion to the top eight TV-subscription services. This is why so-called “cord cutting,” by which consumers drop cable to watch videos on Roku, Hulu, or the Xbox 360 from <span class="ticker" data-symbol="MSFT">Microsoft is</span> accelerating; <span class="ticker" data-symbol="CMCSA">Comcast</span>, the leading U.S. cable system, lost 238,000 subscribers in the second quarter. If Apple were to offer a better service, people might pay up for it.</p>
<p>A second lure for Apple is TV advertising. Unlike U.S. mobile-ad spending, which EMarketer says will barely break $1 billion in 2010 despite years of hype, the TV ad spend in the U.S. totaled $70 billion in 2010 and is forecast by <span class="ticker" data-symbol="FORR">Forrester Research</span> to reach $84 billion by 2015. If Apple could gain just 10% of the $74 billion in current video subscription fees and $70 billion in television ad media, it would take in more than $14 billion in additional annual, recurring revenue.</p>
<p>Apple faces plenty of hurdles. For one thing, TV sets are an infrequent purchase. Apple likes to sell products with built-in obsolescence that you “need” to replace every 18 months—iPhone 5, anyone?—and a flashy TV set doesn’t call for an aluminum upgrade next year. Apple also has struggled to get content providers to embrace its current Apple TV box. In August, Apple stopped renting TV shows for 99¢ on the gadget, claiming that consumers overwhelmingly prefer to buy TV shows. But it could be that Apple’s media partners considered 99¢ far too cheap. With billions of dollars at stake, media producers and cable giants will fiercely defend their video-distribution modes.</p>
<div id="pagination">
<span class="pagelinks">
<a class="current" href="/technology/here-comes-apples-real-tv-09132011.html">1</a>
<a href="/technology/here-comes-apples-real-tv-09132011_page_2.html">2</a>
<span class="of">of</span>
<a href="/technology/here-comes-apples-real-tv-09132011_page_2.html">2</a>
</span>
<a href="/technology/here-comes-apples-real-tv-09132011_page_2.html" id="next_page">Next Page</a>
</div>
<div class="clear"></div>
</div>
<div id="reader_comments" class="module">
<h4>READER DISCUSSION</h4>
<div id="disqus_thread"></div>
</div>
<div id="ad_position_4" class="module">
<div class="ad">
<div id="ad-position4" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("position4", "468x60,1x1", "", 5, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=position4;sz=468x60,1x1;tile=5;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=position4;sz=468x60,1x1;tile=5;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
</div>
</div>
<div id="bw_extras" class="module">
<h4>BW Extras</h4>
<ul>
<li id="podcast_extra" class="section_title"><a href="http://www.businessweek.com/search/podcasting.htm?campaign_id=bw_extras">Podcasts</a></li>
<li><a href="http://www.businessweek.com/mediacenter/podcasts/mandel_on_economics/current.html?campaign_id=bw_extras">Mandel on Economics</a></li>
<li><a href="http://www.businessweek.com/mediacenter/podcasts/cover_stories/current.html?campaign_id=bw_extras">Behind the Cover</a></li>
<li><a href="http://www.businessweek.com/mediacenter/podcasts/guide_to_tech/current.html?campaign_id=bw_extras">CEO Guide to Tech</a></li>
<li><a href="http://www.businessweek.com/search/podcasting.htm?campaign_id=bw_extras">more?</a></li>
</ul>
<ul>
<li id="rss_extra" class="section_title"><a href="http://www.businessweek.com/search/rssfeed.htm?campaign_id=bw_extras">RSS Feeds</a></li>
<li><a href="http://www.businessweek.com/search/rssinterstitial.html?target=www.businessweek.com/topStories/rss/topStories.rss?campaign_id=bw_extras">Most Popular</a></li>
<li><a href="http://www.businessweek.com/search/rssinterstitial.html?target=www.businessweek.com/rss/bwdaily.rss?campaign_id=bw_extras">Top News</a></li>
<li><a href="http://www.businessweek.com/search/rssinterstitial.html?target=www.businessweek.com/rss/innovation.rss?campaign_id=bw_extras">Innovation Trends</a></li>
<li><a href="http://www.businessweek.com/search/rssfeed.htm?campaign_id=bw_extras">more?</a></li>
</ul>
<ul>
<li id="email_extra" class="section_title"><a href="http://www.businessweek.com/common/newsletters.htm?campaign_id=bw_extras">E-mails</a></li>
<li><a href="http://www.businessweek.com/newsletters.htm?campaign_id=bw_extras#asia">Asia Insider</a></li>
<li><a href="http://www.businessweek.com/newsletters.htm?campaign_id=bw_extras#mba_express">MBA Express</a></li>
<li><a href="http://www.businessweek.com/newsletters.htm?campaign_id=bw_extras#bw_online_in">BW.com Insider</a></li>
<li><a href="http://www.businessweek.com/common/newsletters.htm?campaign_id=bw_extras">more?</a></li>
</ul>
<ul>
<li id="blog_extra" class="section_title"><a href="http://www.businessweek.com/blogs/?campaign_id=bw_extras">Blogs</a></li>
<li><a href="http://www.businessweek.com/the_thread/blogspotting/?campaign_id=bw_extras">Blogspotting</a></li>
<li><a href="http://www.businessweek.com/the_thread/hotproperty/?campaign_id=bw_extras">Hot Property</a></li>
<li><a href="http://www.businessweek.com/the_thread/techbeat/?campaign_id=bw_extras">Tech Beat</a></li>
<li><a href="http://www.businessweek.com/blogs/?campaign_id=bw_extras">more?</a></li>
</ul>
</div>
<!-- end begin article content template -->
</div>
</div>
<div class="clear"></div>
</div>
</div>
<script type="text/javascript">
var disqus_shortname = 'businessweek' ;
var disqus_identifier = '68152c9f4a4cfe8fa870e39da2479f50';
var disqus_url = 'http://www.businessweek.com/technology/here-comes-apples-real-tv-09132011.html';
$(window).bind("load", function() {
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
});
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<script type="text/javascript">
var disqus_shortname = 'businessweek' ;
var disqus_developer = 0;
$(window).bind("load", function() {
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
});
</script>
<script src="http://static.btrd.net/js/34567890/analytics/bw_hcode.js" type="text/javascript" ></script>
<script type="text/javascript">
//<![CDATA[
window.epulse_content_group = "cg1=technology,cg2=Viewpoint,cg3=Here Comes Apple's Real TV";
var bw_pageName = "Here Comes Apple's Real TV";
var bw_page="story";
var bw_user="unknown-www";
var bw_attributor="";
var s_prop9 = "Ben Kunz";
var s_prop3 = "http://www.businessweek.com/technology/here-comes-apples-real-tv-09132011.html";
var s_prop20 = "20110913";
var s_code=s.t();
if(s_code)document.write(s_code);
//]]>
</script>
<div id="ad-circfooter" class="dc-ad story" style="">
<script type="text/javascript">
//<![CDATA[
document.write(renderAdPosition("circfooter", "980x70,1x1", "dcopt=ist", 9, "mgh.bw.technology/general", "/technology/here-comes-apples-real-tv-09132011.html", "t2"));
//]]>
</script>
</div>
<noscript>
<div class="dc-ad">
<a href="http://ad.doubleclick.net/jump/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=circfooter;sz=980x70,1x1;dcopt=ist;tile=9;ord=2654978352">
<img src="http://ad.doubleclick.net/ad/mgh.bw.technology/general;url=/technology/here-comes-apples-real-tv-09132011.html;page=t2;t2=circfooter;sz=980x70,1x1;dcopt=ist;tile=9;ord=2654978352" alt="" />
</a>
</div>
</noscript>
<script type='text/javascript'>
//<![CDATA[
if((window.surroundId == null)&&(adid != "")) {
surroundId = adid;
setCookie('bwSurroundId', surroundId, '','/','','');
}
//]]>
</script>
<div id="seo_footer" class="footer">
<div class="full_width_container">
<div id="special_reports_footer_container" class="module">
<h5>Special Reports</h5>
<h6><a href="http://www.businessweek.com/fix-this/energy.html">Fix This: Energy</a></h6>
<a href="http://www.businessweek.com/fix-this/energy.html"> <img src="http://images.businessweek.com/lede/11/125x100/0728fixthisenergy__01__125.jpg" width="125" height="100" title="Fix This: Energy" alt="Fix This: Energy image" />
</a>
<ul>
<li><a href="http://www.businessweek.com/magazine/toc/11_13/B4221japan-crisis.htm">Crisis in Japan</a></li>
<li><a href="http://www.businessweek.com/magazine/toc/11_13/B4221health_care.htm">Health Care</a></li>
<li><a href="http://www.businessweek.com/technology/special_reports/20110301ceo_guide_sentiment_analysis.htm">Sentiment Analysis</a></li>
</ul>
<a class="more" href="http://www.businessweek.com/sr/index.htm">More Special Reports</a>
</div>
<div class="module">
<h5>Business Tools</h5>
<ul>
<li><a href="http://tools.businessweek.com/BSchool_Comparator/">B-School Comparison</a></li>
<li><a href="http://tools.businessweek.com/business_school_events_calendar/">B-School Calendar</a></li>
<li><a href="http://www.businessweek.com/search/mobile.htm">BW for Mobile</a></li>
<li><a href="http://newsletters.businessweek.com/bwn/ns.asp">E-mail Newsletters</a></li>
<li><a href="http://www.businessweek.com/search/rssfeed.htm">RSS</a></li>
<li><a href="http://whitepapers.bx.businessweek.com/">White Papers</a></li>
</ul>
<h5>A-Z Index</h5>
<ul>
<li><a href="http://www.businessweek.com/columnists/letter_a/">BW Authors</a></li>
<li><a href="http://bx.businessweek.com/topics-a/">BX Topics</a></li>
<li><a href="http://investing.businessweek.com/research/common/symbollookup/symbollookup.asp?lookuptype=private&region=all&letterIn=A">Private Companies</a></li>
<li><a href="http://investing.businessweek.com/research/common/symbollookup/symbollookup.asp?letterIn=A">Public Companies</a></li>
</ul>
</div>
<div class="module">
<h5>Lists & Rankings</h5>
<ul>
<li><a href="http://www.businessweek.com/go/brand/">Best Global Brands </a></li>
<li><a href="http://www.businessweek.com/bestplaces/">Best Places to Launch a Career </a></li>
<li><a href="http://www.businessweek.com/go/customer/">Best Providers of Customer Service</a></li>
<li><a href="http://www.businessweek.com/interactive_reports/bschools_undergraduate_10rankings.html">Best Undergraduate Business Schools</a></li>
<li><a href="http://www.businessweek.com/bschools/rankings/">Business School Rankings & Profiles</a></li>
<li><a href="http://www.businessweek.com/bw50/ ">BW 50: Best Performing Companies</a></li>
<li><a href="http://www.businessweek.com/it100/ ">Top 100 IT Companies</a></li>
<li><a href="http://www.businessweek.com/go/innovativecompanies/">Most Innovative Companies </a></li>
</ul>
</div>
<div class="module">
<h5><a class="linked-header" href="http://www.businessweek.com/blogs/">Blogs</a></h5>
<ul>
<li><a href="http://www.businessweek.com/technology/byteoftheapple/blog/">Apple</a></li>
<li><a href="http://www.businessweek.com/globalbiz/blog/eyeonasia/">Asia</a></li>
<li><a href="http://www.businessweek.com/autos/autobeat/">Autos</a></li>
<li><a href="http://www.businessweek.com/the_thread/economicsunbound/">EconoChat</a></li>
<li><a href="http://www.businessweek.com/investing/insights/blog/">Investing</a></li>
<li><a href="http://www.businessweek.com/innovate/fineonmedia/">On Media</a></li>
<li><a href="http://www.businessweek.com/smallbiz/running_small_business/">Small Business</a></li>
<li><a href="http://www.businessweek.com/the_thread/techbeat/">Technology</a></li>
</ul>
<h5>Social Media</h5>
<ul>
<li><a href="http://twitter.com/bw/">@BW on Twitter</a></li>
<li><a href="http://facebook.com/Bloombergbusinessweek/">BW on Facebook</a></li>
</ul>
</div>
<div class="module">
<h5><a class="linked-header" href="http://www.businessweek.com/slideshows/">Slideshow Gallery</a></h5>
<ul>
<li><a href="http://www.businessweek.com/slideshows/ss_autos.htm">Autos</a></li>