· 8 years ago · Dec 03, 2017, 06:34 PM
1CREATE TABLE IF NOT EXISTS `isc_products` (
2 `productid` int(11) NOT NULL AUTO_INCREMENT,
3 `prodname` varchar(250) NOT NULL DEFAULT '',
4 `prodtype` smallint(6) NOT NULL DEFAULT '0',
5 `prodcode` varchar(250) NOT NULL DEFAULT '',
6 `prodfile` varchar(250) NOT NULL DEFAULT '',
7 `proddesc` longtext,
8 `prodsearchkeywords` text,
9 `prodavailability` varchar(250) NOT NULL DEFAULT '',
10 `prodprice` decimal(20,4) NOT NULL DEFAULT '0.0000',
11 `prodcostprice` decimal(20,4) NOT NULL DEFAULT '0.0000',
12 `prodretailprice` decimal(20,4) NOT NULL DEFAULT '0.0000',
13 `prodsaleprice` decimal(20,4) NOT NULL DEFAULT '0.0000',
14 `prodcalculatedprice` decimal(20,4) NOT NULL DEFAULT '0.0000',
15 `prodsortorder` int(11) NOT NULL DEFAULT '0',
16 `prodvisible` tinyint(4) NOT NULL DEFAULT '0',
17 `prodfeatured` tinyint(4) NOT NULL DEFAULT '0',
18 `prodvendorfeatured` tinyint(1) NOT NULL DEFAULT '0',
19 `prodrelatedproducts` varchar(250) NOT NULL DEFAULT '',
20 `prodcurrentinv` int(11) NOT NULL DEFAULT '0',
21 `prodlowinv` int(11) NOT NULL DEFAULT '0',
22 `prodoptionsrequired` tinyint(4) NOT NULL DEFAULT '0',
23 `prodwarranty` text,
24 `prodweight` decimal(20,4) NOT NULL DEFAULT '0.0000',
25 `prodwidth` decimal(20,4) NOT NULL DEFAULT '0.0000',
26 `prodheight` decimal(20,4) NOT NULL DEFAULT '0.0000',
27 `proddepth` decimal(20,4) NOT NULL DEFAULT '0.0000',
28 `prodfixedshippingcost` decimal(20,4) NOT NULL DEFAULT '0.0000',
29 `prodfreeshipping` tinyint(4) NOT NULL DEFAULT '0',
30 `prodinvtrack` tinyint(4) NOT NULL DEFAULT '0',
31 `prodratingtotal` int(11) NOT NULL DEFAULT '0',
32 `prodnumratings` int(11) NOT NULL DEFAULT '0',
33 `prodnumsold` int(11) NOT NULL DEFAULT '0',
34 `proddateadded` int(11) NOT NULL DEFAULT '0',
35 `prodbrandid` int(11) NOT NULL DEFAULT '0',
36 `prodnumviews` int(11) NOT NULL DEFAULT '0',
37 `prodpagetitle` varchar(250) NOT NULL DEFAULT '',
38 `prodmetakeywords` text,
39 `prodmetadesc` text,
40 `prodlayoutfile` varchar(50) NOT NULL DEFAULT '',
41 `prodvariationid` int(11) NOT NULL DEFAULT '0',
42 `prodallowpurchases` int(1) NOT NULL DEFAULT '1',
43 `prodhideprice` int(1) NOT NULL DEFAULT '0',
44 `prodcallforpricinglabel` varchar(200) NOT NULL DEFAULT '',
45 `prodcatids` text NOT NULL,
46 `prodlastmodified` int(10) unsigned NOT NULL DEFAULT '0',
47 `prodvendorid` int(10) unsigned NOT NULL DEFAULT '0',
48 `prodhastags` int(1) NOT NULL DEFAULT '0',
49 `prodwrapoptions` text,
50 `prodconfigfields` varchar(255) NOT NULL DEFAULT '',
51 `prodeventdaterequired` tinyint(4) DEFAULT NULL,
52 `prodeventdatefieldname` varchar(255) DEFAULT NULL,
53 `prodeventdatelimited` tinyint(4) DEFAULT NULL,
54 `prodeventdatelimitedtype` tinyint(4) DEFAULT NULL,
55 `prodeventdatelimitedstartdate` int(9) DEFAULT NULL,
56 `prodeventdatelimitedenddate` int(9) DEFAULT NULL,
57 `prodmyobasset` varchar(20) NOT NULL DEFAULT '',
58 `prodmyobincome` varchar(20) NOT NULL DEFAULT '',
59 `prodmyobexpense` varchar(20) NOT NULL DEFAULT '',
60 `prodpeachtreegl` varchar(20) NOT NULL DEFAULT '',
61 `prodcondition` enum('New','Used','Refurbished') NOT NULL DEFAULT 'New',
62 `prodshowcondition` tinyint(1) unsigned NOT NULL DEFAULT '0',
63 `product_enable_optimizer` tinyint(1) unsigned NOT NULL DEFAULT '0',
64 `prodpreorder` tinyint(1) unsigned NOT NULL DEFAULT '0',
65 `prodreleasedate` int(11) NOT NULL DEFAULT '0',
66 `prodreleasedateremove` tinyint(1) unsigned NOT NULL DEFAULT '0',
67 `prodpreordermessage` varchar(250) NOT NULL DEFAULT '',
68 `prodminqty` int(10) unsigned NOT NULL DEFAULT '0',
69 `prodmaxqty` int(10) unsigned NOT NULL DEFAULT '0',
70 `tax_class_id` int(10) unsigned NOT NULL DEFAULT '0',
71 `opengraph_type` varchar(15) NOT NULL DEFAULT 'product',
72 `opengraph_title` varchar(250) NOT NULL DEFAULT '',
73 `opengraph_use_product_name` tinyint(1) unsigned NOT NULL DEFAULT '1',
74 `opengraph_description` text,
75 `opengraph_use_meta_description` tinyint(1) unsigned NOT NULL DEFAULT '1',
76 `opengraph_use_image` tinyint(1) unsigned NOT NULL DEFAULT '1',
77 `upc` varchar(32) DEFAULT '',
78 `disable_google_checkout` int(1) NOT NULL DEFAULT '0',
79 `last_import` int(11) NOT NULL DEFAULT '0',
80 PRIMARY KEY (`productid`),
81 UNIQUE KEY `u_products_prodname` (`prodname`),
82 KEY `i_products_brand_vis` (`prodbrandid`,`prodvisible`),
83 KEY `i_products_prodnumsold` (`prodnumsold`),
84 KEY `i_products_feature_vis` (`prodfeatured`,`prodvisible`),
85 KEY `i_products_rating_vis` (`prodvisible`,`prodratingtotal`),
86 KEY `i_products_added_vis` (`prodvisible`,`proddateadded`),
87 KEY `i_products_hideprice_vis` (`prodhideprice`,`prodvisible`),
88 KEY `i_products_sortorder_vis` (`prodvisible`,`prodsortorder`,`prodname`),
89 KEY `i_products_last_import` (`last_import`)
90) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=29 ;
91
92--
93-- Dumping data for table `isc_products`
94--
95
96INSERT INTO `isc_products` (`productid`, `prodname`, `prodtype`, `prodcode`, `prodfile`, `proddesc`, `prodsearchkeywords`, `prodavailability`, `prodprice`, `prodcostprice`, `prodretailprice`, `prodsaleprice`, `prodcalculatedprice`, `prodsortorder`, `prodvisible`, `prodfeatured`, `prodvendorfeatured`, `prodrelatedproducts`, `prodcurrentinv`, `prodlowinv`, `prodoptionsrequired`, `prodwarranty`, `prodweight`, `prodwidth`, `prodheight`, `proddepth`, `prodfixedshippingcost`, `prodfreeshipping`, `prodinvtrack`, `prodratingtotal`, `prodnumratings`, `prodnumsold`, `proddateadded`, `prodbrandid`, `prodnumviews`, `prodpagetitle`, `prodmetakeywords`, `prodmetadesc`, `prodlayoutfile`, `prodvariationid`, `prodallowpurchases`, `prodhideprice`, `prodcallforpricinglabel`, `prodcatids`, `prodlastmodified`, `prodvendorid`, `prodhastags`, `prodwrapoptions`, `prodconfigfields`, `prodeventdaterequired`, `prodeventdatefieldname`, `prodeventdatelimited`, `prodeventdatelimitedtype`, `prodeventdatelimitedstartdate`, `prodeventdatelimitedenddate`, `prodmyobasset`, `prodmyobincome`, `prodmyobexpense`, `prodpeachtreegl`, `prodcondition`, `prodshowcondition`, `product_enable_optimizer`, `prodpreorder`, `prodreleasedate`, `prodreleasedateremove`, `prodpreordermessage`, `prodminqty`, `prodmaxqty`, `tax_class_id`, `opengraph_type`, `opengraph_title`, `opengraph_use_product_name`, `opengraph_description`, `opengraph_use_meta_description`, `opengraph_use_image`, `upc`, `disable_google_checkout`, `last_import`) VALUES
97(1, 'iPod Shuffle', 1, '', '', '<div class="txt">The world’s smallest digital music player, the 1GB iPod shuffle lets you wear up to 500 songs on your sleeve. Or your lapel. Or your belt. Clip on iPod shuffle and wear it as a badge of musical devotion.<br/><span style="font-weight: bold;"><br/>Instant attachment.</span><br/>Clip on the world’s most wearable music player and take up to 500 songs with you anywhere. Choose from two capacities and five colors — including four new hues — to make your musical fashion statement.<br/><br/><span style="font-weight: bold;">Random meets rhythm.</span><br/>Mix up your music with a flip of the shuffle switch. Flip it again to play your handpicked playlists and albums in the order you synced them with iTunes.<br/><br/><span style="font-weight: bold;">Everything is easy.</span><br/>Charge and sync with the included USB dock. Operate the iPod shuffle controls with one hand. Enjoy up to 12 hours straight of skip-free music playback.<br/><br/><span style="font-weight: bold;">Technical Details</span><br/><ul><li>Store up to 500 songs</li><li>Stores data via USB flash drive</li><li>Skip-free audio playback</li><li>Up to 12 hours playtime when fully charged</li><li>Charging via included USB dock</li><li>Autofill from your entire music library for a fresh mix via iTunes software (via download)</li><li>Autofill from specific playlists via iTunes software</li><li>Play MP3, AAC and audiobooks</li><li>Thumb-friendly, circular control pad</li><li>Click the center button to play and pause. Click the outer buttons to move back, skip forward, and adjust volume</li><li>Built-in clip for your sleeve, your lapel, your coin pocket, your backpack</li><li>Flip the shuffle switch to mix up iPod shuffle''s contents</li></ul></div>', '', '', '49.0000', '0.0000', '0.0000', '0.0000', '49.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '2.0000', '1.6200', '1.0700', '0.4100', '0.0000', 0, 0, 0, 0, 1, 1231755759, 1, 8, '', '', '', 'product.html', 1, 1, 0, '', '3', 0, 1, 0, '0', '1', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
98(2, 'iPod Nano', 1, '', '', 'Colour isn''t the only brilliant new iPod Nano feature. For those about to rock, we give you nine amazing colours. But that’s only part of the story. Feel the curved, all-aluminum and glass design and you won’t want to put iPod nano down. The accelerometer comes to iPod nano. Give it a shake to shuffle your music. Turn it sideways to view Cover Flow. And play games designed with your moves in mind.<br/><br/><span style="font-weight: bold;">Meet a musical Genius.</span><br/>With just a few clicks, the new Genius feature finds the songs on your iPod nano that go great together and makes a Genius Playlist for you.<br/><br/><span style="font-weight: bold;">Rock and roll over.</span><br/>Thanks to the built-in accelerometer, you can rotate iPod nano to flip through album art with Cover Flow. Watch movies and TV shows in widescreen. And view photos in either portrait or landscape.<br/><br/><span style="font-weight: bold;">Shake to shuffle.</span><br/>Just give iPod nano a shake and it shuffles to a different song in your music library.<br/><br/><span style="font-weight: bold;">Curved ahead of the curve.</span><br/>iPod nano now comes in nine vibrant colors and a new curved aluminum and glass design. The crisp, bright picture makes watching movies and TV shows amazing.', '', '', '149.0000', '0.0000', '0.0000', '0.0000', '149.0000', 0, 1, 1, 0, '-1', 0, 0, 1, '', '3.0000', '1.5000', '3.6000', '0.2400', '0.0000', 0, 0, 0, 0, 2, 1231756138, 1, 33, '', '', '', 'product.html', 2, 1, 0, '', '3', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
99(3, 'iPod Classic', 1, '', '', 'With 120GB of storage, iPod classic can hold up to 30,000 songs, 150 hours of video, or 25,000 photos. That’s more than enough room for a day’s — or a lifetime’s — worth of entertainment. Available in quintessential silver or striking new black, iPod classic catches your eye with its sleek, all-metal enclosure composed of anodised aluminium and polished stainless steel.<br/><br/><span style="font-weight: bold;">Classic beauty.</span><br/>Beautiful, durable, and sleek, iPod classic features an anodized aluminum and polished stainless steel enclosure with rounded edges. Choose quintessential silver or striking new black.<br/><br/><span style="font-weight: bold;">A Genius in the house.</span><br/>With just a few clicks, the new Genius feature creates a playlist of tracks in your library that go great together.<br/><br/><span style="font-weight: bold;">Enjoy the view.</span><br/>With Cover Flow, you can browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.<br/><br/>', '', '', '249.0000', '0.0000', '0.0000', '0.0000', '249.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '2.0000', '2.4000', '4.1000', '0.4100', '0.0000', 0, 0, 0, 0, 3, 1231756862, 1, 13, '', '', '', 'product.html', 3, 1, 0, '', '3', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
100(4, 'iPod Touch', 1, '', '', 'With a stunningly thin, contoured stainless steel design, iPod touch feels even better in your hand. And the new volume buttons and built-in speaker give you more to love. Groundbreaking technologies built into iPod touch — such as the Multi-Touch display, accelerometer, and 3D graphics — immerse you in the action. The new Genius feature turns iPod touch into a highly intelligent, personal DJ. With a few taps, it creates a playlist by finding songs in your library that go great together.<br/><br/><span style="font-weight: bold;">Get your mobile game on.</span><br/>With a built-in speaker and groundbreaking technologies such as the Multi-Touch display, accelerometer, and 3D graphics, iPod touch puts an amazing gaming experience in the palm of your hand.<br/><br/><span style="font-weight: bold;">Rock ''n'' run with Nike+.</span><br/>iPod touch now includes built-in Nike + iPod support. Just slip the Nike + iPod Sensor (available separately) into your Nike+ shoe and start your run. The sensor communicates wirelessly with your iPod touch, tracking your time, distance, and calories burned. It even gives you voice feedback on your progress.<br/><br/><span style="font-weight: bold;">Meet a musical Genius.</span><br/>With just a few taps, the new Genius feature creates a playlist of tracks in your library that go great together.<br/><br/><span style="font-weight: bold;">Technical Details</span><br/><ul><li>8GB, 16GB or 32GB flash drive with Nike + iPod support built in</li><li>Built in speaker</li><li>3.5-inch (diagonal) widescreen multi-touch display</li><li>Built-in 802.11b/g wireless networking</li><li>Up to 36 hours of audio playback or 6 hours of video playback</li></ul>', '', '', '229.0000', '0.0000', '0.0000', '0.0000', '229.0000', 0, 1, 0, 0, '6,22,23,24', 0, 0, 1, '', '2.0000', '2.4000', '4.1000', '0.3000', '0.0000', 0, 0, 0, 0, 4, 1231757201, 1, 6, '', '', '', 'product.html', 4, 1, 0, '', '3', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
101(5, 'MacBook', 1, '', '', 'Redesigned with a precision unibody enclosure crafted from a single block of aluminum, the MacBook is thinner and lighter than its predecessor as well as stronger and more durable. But Apple didn''t stop innovating with the body''s design. The MacBook also includes a new 13.3-inch, LED-backlit glass display (instead of an LCD panel) and a glass trackpad that doesn''t include a button (for larger tracking area) and features includes Apple''s Multi-Touch technology.<br/><br/><span style="font-weight: bold;">LED-backlit display.</span><br/>The ultrathin 1280-by-800-pixel LED-backlit display shows off your digital media perfectly. And it''s as easy on the environment as it is on the eyes: The gorgeous glass and aluminum enclosure is arsenic- and mercury-free, and LED technology makes it more power efficient.<br/><br/><span style="font-weight: bold;">Advanced NVIDIA integrated graphics.</span><br/>Experience the most powerful MacBook graphics ever. With a new NVIDIA GeForce 9400M processor, the new MacBook delivers up to 5x more graphics performance, so you can immerse yourself in lifelike 3D games.<br/><br/><span style="font-weight: bold;">Multi-Touch trackpad.</span><br/>Multi-Touch comes to MacBook. The smooth, spacious glass trackpad is designed to give you more room for your fingers — and more functionality with Multi-Touch gestures. And since the entire trackpad doubles as the button, you can comfortably click anywhere.<br/><br/><span style="font-weight: bold;">Technical Details</span><br/><ul><li>Strong aluminum unibody frame and 13.3-inch LED-backlit glass display</li><li>New glass trackpad with 40 percent more tracking area and supports more Multi-Touch gestures</li><li>2 GB RAM (4 GB max), DVD/CD SuperDrive</li><li>Integraed NVIDIA graphics (with 256 MB shared memory); Draft-N Wi-Fi; Bluetooth 2.1; Gigabit Ethernet; Mini DisplayPort video output</li><li>Preloaded with Mac OS X 10.5 Leopard operating system and iLife ''08 suite of applications</li></ul>', '', '', '1299.0000', '0.0000', '0.0000', '0.0000', '1299.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '4.5000', '12.7800', '0.9000', '8.9400', '0.0000', 0, 0, 0, 0, 5, 1231757800, 1, 18, '', '', '', 'product.html', 5, 1, 0, '', '1', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
102(6, 'MacBook Pro', 1, '', '', 'Redesigned with a precision unibody enclosure crafted from a single block of aluminum, the MacBook Pro is thinner and lighter than its predecessor as well as stronger and more durable. But Apple didn''t stop innovating with the body''s design. The MacBook Pro also includes a new 15-inch, LED-backlit glass display (instead of an LCD panel) and a glass trackpad that doesn''t include a button (for larger tracking area) and features includes Apple''s Multi-Touch technology.<br/><br/><span style="font-weight: bold;">LED-backlit widescreen display.</span><br/>Seamless glass and instant full screen brightness make your brilliant ideas flat-out spectacular. The 17-inch model goes further, offering a high-resolution display with a 60 percent greater color gamut.<br/><br/><span style="font-weight: bold;">Smooth glass Multi-Touch trackpad.</span><br/>Now the entire trackpad is also the button, so it''s clickable everywhere. And it offers even more Multi-Touch gestures and functionality.<br/><br/><span style="font-weight: bold;">High-performance NVIDIA graphics.</span><br/>MacBook Pro features two NVIDIA graphics processors — one discrete and one integrated — to help you get the most out of your applications.<br/><br/><span style="font-weight: bold;">Breakthrough battery performance.</span><br/>Get up to 8 hours of wireless productivity on a single charge with the revolutionary built-in battery on the new 17-inch MacBook Pro. Or stay productive for up to 5 hours with the 15-inch model.<br/><br/><span style="font-weight: bold;">Technical Details</span><br/><ul><li>Thin, strong aluminum unibody frame and 15-inch LED-backlit glass display</li><li>New glass trackpad with 40 percent more tracking area and supports more Multi-Touch gestures</li><li>2 GB DDR3 RAM (4 GB max), DVD/CD SuperDrive</li><li>Dual NVIDIA graphics (integrated and discrete); Draft-N Wi-Fi; Bluetooth 2.1; Gigabit Ethernet; Mini DisplayPort video output</li><li>Preloaded with Mac OS X 10.5 Leopard operating system and iLife ''08 suite of applications</li></ul>', '', '', '1999.0000', '0.0000', '0.0000', '0.0000', '1999.0000', 0, 1, 1, 0, '-1', 0, 0, 1, '', '1.0000', '14.3500', '0.9500', '9.8200', '0.0000', 0, 0, 0, 0, 6, 1231758196, 1, 32, '', '', '', 'product.html', 6, 1, 0, '', '1', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
103(7, 'MacBook Air', 1, '', '', 'With the MacBook Air, Apple has created the world''s thinnest laptop--measuring an unprecedented 0.16-inches at its thinnest point (and 0.76 inches thick overall). Apple brings its vaunted multi-touch technology, found on the iPhone, to its laptops with the MacBook Air, enabling you to pinch, swipe, or rotate to zoom in on text, advance through a photo album, or adjust an image via the oversized trackpad. And the MacBook Air embodies Apple''s continuing environmental progress with its aluminum enclosure, a material highly desired by recyclers; Apple''s first mercury-free LCD display with arsenic-free glass; and brominated flame retardant-free material for the majority of circuit boards as well as PVC-free internal cables.<br/><br/><span style="font-weight: bold;">Flat-out stunning</span><br/>From 0.16 to 0.76 inch thin and weighing only 3.0 pounds, MacBook Air sets new standards for ultraportable computing — without the usual ultraportable compromises.<br/><br/><span style="font-weight: bold;">Faster Intel mobile architecture</span><br/>With speeds up to 1.86GHz, the Intel Core 2 Duo processor in the new MacBook Air offers 50 percent more L2 cache, faster DDR3 memory, and a faster frontside bus than the previous model.<br/><br/><span style="font-weight: bold;">The genius of Multi-Touch</span><br/>The MacBook Air trackpad adopts many of the innovative Multi-Touch gestures of the Apple iPhone, so you can pinch, swipe, or rotate by simply moving your fingers.<br/><br/><span style="font-weight: bold;">Up to 4x more graphics performance</span><br/>With the NVIDIA GeForce 9400M integrated graphics, the new MacBook Air offers smooth video playback, a great ultraportable gaming experience, and support for the new 24-inch Apple LED Cinema Display as well as the 30-inch Apple Cinema HD Display.', '', '', '1799.0000', '0.0000', '0.0000', '0.0000', '1799.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '3.0000', '12.8000', '0.7600', '8.9400', '0.0000', 0, 0, 0, 0, 7, 1231758729, 1, 5, '', '', '', 'product.html', 7, 1, 0, '', '1', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
104(8, 'Elgato EyeTV DTT Deluxe', 1, '', '', 'EyeTV DTT Deluxe is an extraordinarily powerful miniature TV tuner that delivers digital terrestrial television (DVB-T, also known as DTT or Freeview) to your Mac. Exceptionally small and beautifully designed, EyeTV DTT Deluxe slips easily into the USB port of any Mac without blocking other devices. EyeTV DTT Deluxe comes with an EyeTV Remote and offers a variety of options for aerial reception. These options vary from a miniature telescopic aerial, a portable rod aerial with a tilt/swivel magnetic base and detachable suction cup, and an adapter to connect EyeTV DTT Deluxe to a rooftop aerial if necessary.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Receives digital TV (DVB-T, or Freeview)</li><li>Miniature USB stick; does not cover any other ports, even on a MacBook Air</li><li>Two types of aerial included plus unique IEC-MCX adapter cable</li><li>Comes with an EyeTV Remote</li></ul><br/><span style="font-weight: bold;">Superb Television Reception</span><br/>Despite its extraordinary size, EyeTV DTT Deluxe is a powerful TV tuner that delivers full-size, crystal-clear reception and uncompromising quality. In areas in which HDTV is broadcast, enjoy watching stunning 720p or 1080i HDTV (MPEG-2 as well as H.264/AVC) on your Mac.', '', '', '199.9500', '0.0000', '0.0000', '0.0000', '199.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 8, 1231759543, 3, 1, '', '', '', 'product.html', 0, 1, 0, '', '6', 0, 2, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
105(9, 'Elgato EyeTV 250 Plus Digital TV Recorder', 1, '', '', 'EyeTV 250 Plus is a hybrid TV tuner for the Mac with a powerful hardware encoder for higher-quality recordings and smaller- sized video files. EyeTV 250 Plus receives both free over-the-air HDTV as well as analog TV, and offers a complete solution for moving your video collection from VHS tape to DVD-Video. <br/><br/><span style="font-weight: bold;">Watch live TV on your Mac</span><br/>Pause the TV show while you get a snack, rewind and watch that great play again, or fast forward past the advertisements. Scale the TV window down so you can watch TV while you surf the web, or go "Full Screen" and channel surf from the couch using an EyeTV or Apple Remote. <br/><br/><span style="font-weight: bold;">Organize channels</span><br/>EyeTV provides detailed information about each television channel. Drag and drop the ones you watch most frequently into a "favorites" list, or go a step further and organize your sports, news, or movie channels into their own lists. <br/><br/><span style="font-weight: bold;">Record your favorite shows</span><br/>Hit the record button now or cruise through the Program Guide and pick the shows you want to record up to two weeks in advance. You can even set up recordings over the Internet while you''re away from home (tvtv/TitanTV/IceTV account required). Fans of radio programming, take note: EyeTV also enables you to record and edit DVB radio.<br/><br/><span style="font-weight: bold;">Features </span><br/>Watch TV on your Mac<br/>Rewind, fast forward, and pause live HDTV<br/>Browse EyeTV menus in Full Screen mode with an Apple Remote<br/>Record hours of your favorite TV shows directly on your hard drive and edit out unwanted content<br/>Find TV shows and schedule recordings using the built-in Program Guide from TitanTV (in the U.S.)<br/>Export clips and entire episodes to your video-capable iPod, Apple TV, and iPhone<br/>Store your collection on an external drive, or burn it to disc using Roxio Toast 8 Basic (included)<br/>Convert old videotapes to digital files using the VHS Assistant<br/>Enjoy progressive scan for excellent picture quality and Dolby Digital', '', '', '429.9500', '0.0000', '0.0000', '0.0000', '429.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 9, 1231759622, 3, 3, '', '', '', 'product.html', 0, 1, 0, '', '6', 0, 2, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
106(10, 'Office for Mac 2008 - Home and Student', 1, 'OFFICE08-H&S', '', 'Your presentation will make an impact. Your documents will be professional. Your analysis will be insightful. And Office 2008 will be there.<br/><br/>The latest version of the industry standard for productivity software on the Macintosh platform. Microsoft® Office 2008 for Mac is more powerful and easier to use. Office 2008 combines Microsoft Word for Mac, Microsoft Power-Point® for Mac, Microsoft Excel® for Mac, Microsoft Entourage® for Mac, and Microsoft Messenger for Mac and lets you easily create high-impact documents and seamlessly share your ideas with others, whether they are on the Mac or Windows® platform.<br/><br/><span style="font-weight: bold;">Word 2008</span><br/>Powerful new tools, more than 100 designer templates, rich themes, and an intuitive user interface will help you make your ideas look as good as they are.<br/><br/><span style="font-weight: bold;">Excel 2008</span><br/>It''s a numbers game. With Excel 2008, analyze, share, and manage your data, and easily create persuasive charts and thought-provoking graphs for powerful results.<br/><br/><span style="font-weight: bold;">PowerPoint 2008</span><br/>Your presentation is a story that PowerPoint will illustrate exquisitely. Its compelling visuals and engaging layouts will inspire your audience''s imagination.<br/><br/><span style="font-weight: bold;">Entourage 2008</span><br/>Your emails will spark ideas, you''ll schedule meetings where creativity abounds. Entourage 2008, the hub of Office 2008, helps it to happen, one task at a time.', '', '', '229.0000', '0.0000', '0.0000', '0.0000', '229.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '3.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 10, 1231760319, 2, 2, '', '', '', 'product.html', 0, 1, 0, '', '9', 0, 4, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
107(11, 'Office 2008 for Mac - Special Media Edition', 1, '', '', 'Your presentation will make an impact. Your documents will be professional. Your analysis will be insightful. And Office 2008 will be there.<br/><br/>The latest version of the industry standard for productivity software on the Macintosh platform. Microsoft® Office 2008 for Mac is more powerful and easier to use. Office 2008 combines Microsoft Word for Mac, Microsoft Power-Point® for Mac, Microsoft Excel® for Mac, Microsoft Entourage® for Mac, and Microsoft Messenger for Mac and lets you easily create high-impact documents and seamlessly share your ideas with others, whether they are on the Mac or Windows® platform.<br/><br/><span style="font-weight: bold;">Microsoft Expression Media</span><br/>Drag-and-drop digital asset management, batch conversion and tagging, even built-in archiving and backup capabilities help you manage more than 100,000 files and hundreds of format types across multiple storage devices.<br/><br/><span style="font-weight: bold;">Word 2008</span><br/>Powerful new tools, more than 100 designer templates, rich themes, and an intuitive user interface will help you make your ideas look as good as they are.<br/><br/><span style="font-weight: bold;">Excel 2008</span><br/>It''s a numbers game. With Excel 2008, analyze, share, and manage your data, and easily create persuasive charts and thought-provoking graphs for powerful results.<br/><br/><span style="font-weight: bold;">PowerPoint 2008</span><br/>Your presentation is a story that PowerPoint will illustrate exquisitely. Its compelling visuals and engaging layouts will inspire your audience''s imagination.<br/><br/><span style="font-weight: bold;">Entourage 2008</span><br/>Your emails will spark ideas, you''ll schedule meetings where creativity abounds. Entourage 2008, the hub of Office 2008, helps it to happen, one task at a time.', '', '', '499.9500', '0.0000', '0.0000', '0.0000', '499.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '4.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 11, 1231760577, 2, 2, '', '', '', 'product.html', 0, 1, 0, '', '9', 0, 4, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
108(12, 'iWork 09', 1, 'IWORK09', '', 'iWork, Apple''s productivity suite, is the easiest way to create great-looking documents, spreadsheets, and presentations. Writing and page layout are easy using Pages. Numbers gives you simple ways to make sense of your data. New cinematic animations, transitions, and effects in Keynote will keep your audience captivated. And iWork is compatible with Microsoft Office, so sharing your work is even easier.<br/><br/><span style="font-weight: bold;">Compatibility and Sharing</span><br/><ul><li>iWork ''09 makes it easy to exchange documents with anyone.</li><li>Open Microsoft Word, Excel, and PowerPoint files in iWork.</li><li>Save your iWork document as a Word, Excel, or PowerPoint file.</li><li>Email your document as an iWork, Office, or PDF file from within iWork.</li><li>Share your work on iWork.com, Apple''s new document-sharing service, now available as a Public Beta. (Apple ID and email account required to publish documents and use the publisher link.)</li></ul>', '', '', '79.0000', '0.0000', '0.0000', '0.0000', '79.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '3.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 12, 1231760717, 1, 0, '', '', '', 'product.html', 0, 1, 0, '', '9', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
109(13, 'iLife 09', 1, 'ILIFE09', '', 'Upgrade to iLife ’09 and get the most out of the photos, movies, and music on your Mac with the latest versions of iPhoto, iMovie, GarageBand, iWeb, and iDVD. Organize and search your photos by faces and places. Make a movie in minutes or edit with precision. Learn to play piano and guitar or record your own music. Create a stunning website and publish it anywhere.', '', '', '79.0000', '0.0000', '0.0000', '0.0000', '79.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '4.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 13, 1231760828, 1, 0, '', '', '', 'product.html', 0, 1, 0, '', '9', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
110(14, 'Apple Mighty Mouse', 1, 'MIGHTYMOUSE', '', 'It''s the wired mouse that reinvents the wheel — the scroll wheel. Mighty Mouse features the amazing Scroll Ball that lets you move anywhere inside a document, literally without lifting a finger. And with touch-sensitive technology concealed under the seamless top shell, you can choose either the versatility of a four-button mouse or the simplicity of a single-button beauty.<br/><br/><span style="font-weight: bold;">Innovative Scroll Ball and button</span><br/>Perfectly positioned to roll smoothly under just one finger, Mighty Mouse''s Scroll Ball offers full 360-degree scrolling capability — up/down, left/right and diagonally. You can scroll long web pages, pan full-size images, maneuver around large spreadsheets, control a video timeline and more. And you can even click the Scroll Ball to access your favorite Tiger features such as Dashboard, Spotlight or Exposé.<br/><br/><span style="font-weight: bold;">Touch-sensitive top shell</span><br/>It looks and feels like a sleek one-button mouse, but Mighty Mouse''s smooth top shell hides a powerful secret: touch-sensitive technology under the shell detects which part of the mouse you''re clicking, so you can both left-click and right-click. And if you prefer the simplicity of a classic one-button mouse, Mighty Mouse is up to the task. Just use the Mac OS X system preference pane to configure it how you want.<br/><br style="font-weight: bold;"><span style="font-weight: bold;">Force-sensing side buttons</span><br/>When you give Mighty Mouse a squeeze, force-sensing side buttons can be configured to activate Mac OS X features such as Dashboard, Exposé or a whole host of other customizable features.', '', '', '69.0000', '0.0000', '0.0000', '0.0000', '69.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 14, 1231761029, 1, 2, '', '', '', 'product.html', 0, 1, 0, '', '4', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
111(15, 'Apple Wireless Mighty Mouse', 1, 'WIRELESS-MIGHTY', '', 'Now you can get the world-famous Mighty Mouse without the tail. With its Bluetooth technology, the wireless Mighty Mouse gives you complete freedom of movement with no cable clutter. It features the popular Scroll Ball that lets you move anywhere inside a document, without lifting a finger. And its laser tracking technology allows it to work on more surfaces with greater precision.<br/><br/><span style="font-weight: bold;">Bluetooth technology, ultimate portability</span><br/>With its secure, reliable Bluetooth technology, wireless Mighty Mouse goes wherever you do. Pair it with any Bluetooth-enabled Mac to work untethered and uncluttered at your desk or on the go, and it operates with either one or two AA batteries — no bulky dock required.<br/><br/><span style="font-weight: bold;">Laser tracking engine</span><br/>The wireless Mighty Mouse features a laser tracking engine that''s up to 20 times more sensitive to surface details than traditional optical technology. That means it can track with precision on more surfaces than ever — even smooth or polished surfaces — with no mouse pad required.<br/><br/><span style="font-weight: bold;">Innovative Scroll Ball and button</span><br/>Perfectly positioned to roll smoothly under just one finger, Mighty Mouse''s Scroll Ball offers full 360-degree scrolling capability — up/down, left/right and diagonally. You can scroll long web pages, pan full-size images, maneuver around large spreadsheets, control a video timeline and more. And you can even click the Scroll Ball to access your favorite Mac OS X features such as Dashboard, Spotlight or Exposé.<br/><br/><span style="font-weight: bold;">Touch-sensitive top shell</span><br/>It looks and feels like a sleek one-button mouse, but Mighty Mouse''s smooth top shell hides a powerful secret: touch-sensitive technology under the shell detects which part of the mouse you''re clicking, so you can both left-click and right-click. And if you prefer the simplicity of a classic one-button mouse, Mighty Mouse is up to the task. Just use the Mac OS X system preference pane to configure it how you want.<br/><br/><span style="font-weight: bold;">Force-sensing side buttons</span><br/>When you give Mighty Mouse a squeeze, force-sensing side buttons can be configured to activate Mac OS X features such as Dashboard, Exposé or a whole host of other customizable features.', '', '', '99.0000', '0.0000', '0.0000', '0.0000', '99.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 15, 1231761152, 1, 1, '', '', '', 'product.html', 0, 1, 0, '', '4', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
112(16, 'Logitech VX Nano Cordless Laser Mouse', 1, 'LOGITECH-NANO', '', 'Simplify life on the road with the Logitech VX Nano Cordless Laser Mouse. It''s always ready for use, thanks to one of the world''s smallest USB receivers. Plug it into your notebook''s USB port just once, then forget about it. No more broken or lost receivers and no more hassles.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Plug-and-forget nano-receiver that''s barely larger than a coin</li><li>Robust wireless connection with advanced 2.4 GHz cordless technology</li><li>Always ready, since you can leave the nano-receiver plugged into your notebook all the time</li><li>Stylish pouch to protect your mouse when it''s not in use</li><li>Longer battery life--up to 6 months of use (or longer with the convenient on/off switch)</li><li>Slim, ultra-portable mouse design that slips easily into your notebook bag</li><li>Storable receiver fits inside the mouse when you need to free up a USB port; shuts down when stored to save battery life</li><li>Hyper-fast scrolling with the nearly frictionless scroll wheel</li><li>Forward/backward buttons for effortless Internet navigation</li><li>Five programmable buttons for customized mouse controls</li><li>Smoother cursor control on virtually any surface</li></ul>', '', '', '69.9600', '0.0000', '0.0000', '0.0000', '69.9600', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 16, 1231761332, 4, 8, '', '', '', 'product.html', 0, 1, 0, '', '4', 0, 3, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
113(17, 'Apple Wireless Keyboard', 1, 'WIRELESS-KEYBOARD', '', 'The Apple Wireless Keyboard has been completely redesigned, inside and out. It features an elegant, ultra-thin anodized aluminum enclosure with low-profile keys that provide crisp, responsive feel. It also has function keys for one-touch access to a variety of Mac features such as screen brightness, volume, eject, play/pause, fast-forward and rewind, Expose, and Dashboard. Its compact design fits on your lap or on even the most crowded desk. And its Bluetooth wireless technology lets you use it just about anywhere within 30 feet of your Mac.<br/><br/>The keyboard automatically powers down when you''re not using it and turns on instantly as soon as you start typing. This intelligent power management means you''ll get up to nine months of battery life based on average usage patterns. It also has an on/off switch for when you''re away from your computer for a long time.', '', '', '79.0000', '0.0000', '0.0000', '0.0000', '79.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '4.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 17, 1231761543, 1, 4, '', '', '', 'product.html', 0, 1, 0, '', '4', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
114(18, 'Crumpler Considerable Embarrassment Bag', 1, 'CRUMPLER-EMB', '', 'With a roomy unpadded cargo compartment and a padded sleeve that accommodates MacBook or 15-inch MacBook Pro notebooks, the Crumpler Considerable Embarrassment gives you the best of both worlds.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Padded notebook compartment with six-pocket organizer</li><li>External zip pocket</li><li>Three internal front pockets</li><li>Adjustable shoulder strap with pad</li><li>Clip and velcro release flap</li><li>Fits 15-in. MacBook Pro and 13-in. MacBook models</li></ul>', '', '', '89.9500', '0.0000', '0.0000', '0.0000', '89.9500', 0, 1, 1, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 23, 1231761944, 5, 45, '', '', '', 'product.html', 0, 1, 0, '', '5', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
115(19, 'Higher Ground Shuttle for 13-inch Notebooks', 1, '', '', 'Small in size and big on protection, the Higher Ground Shuttle lets you use your notebook while it''s still in the case--for the ultimate in convenience. For the most in comfort, the Shuttle''s cooldeck provides non-slip riser pads that facilitate airflow so your lap and your computer stay cooler. <br/><br/>And if you''d like the freedom of carrying the Shuttle on your back, you can get the optional lightweight mesh backpack strap attachment--in addition to the single shoulder strap that''s included. <br/><br/><span style="font-weight: bold;">Features </span><br/><ul><li>Full-time protection since your notebook never has to leave its case</li><li>Cooldeck for computer heat dissipation</li><li>Single shoulder strap (backpack option available)</li><li>Convenient for use on your lap or desktop surface</li><li>Rigid frame and shock-absorbing foam padding throughout</li><li>Reinforcement at all stress points</li><li>Constructed of the finest expedition grade fabrics</li><li>Heavy waterproof coating on all fabrics</li><li>Shields your lap from excessive heat buildup</li></ul>', '', '', '39.9500', '0.0000', '0.0000', '0.0000', '39.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '3.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 19, 1231762065, 6, 4, '', '', '', 'product.html', 0, 1, 0, '', '5', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
116(20, 'Speck 13-inch SeeThru Satin Case', 1, 'SPEC-13-B', '', 'Give your aluminum MacBook a smooth yet easily gripped semi-translucent frosted finish that effortlessly slips in and out of your bag. The SeeThru Satin case also ensures access to all your important plugs and drives while protecting your precious investment.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Silky-smooth soft-touch hard shell protection</li><li>Protection from scrapes and scratches</li><li>Smooth yet grippy rubberized exterior texture</li><li>Ensures full range of motion for MacBook display</li><li>Full venting for safe heat disbursement</li><li>Access to all ports, battery check button, and CD/DVD drive</li><li>Easy installation and removal</li><li>Built-in rubberized feet for stability on flat surfaces</li><li>Soft cleaning cloth</li><li>Fits the aluminum 13-inch MacBook</li></ul>', '', '', '49.9500', '0.0000', '0.0000', '0.0000', '49.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 20, 1231762165, 7, 5, '', '', '', 'product.html', 0, 1, 0, '', '5', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
117(21, 'booq Mamba Saddle', 1, 'BOOQ-MAMBO', '', 'With its boldly-colored interior and elegant exterior, its zippered accessory pouch for small items, and its impeccable finish and convenient pocket layout, the Mamba Saddle is the ideal bag for your life and your life at work.<br/><br/>The Mamba Saddle also includes booq''s Terralinq service, which may help reunite you with your bag if it''s ever lost. To make this possible, each booq bag carries a unique item number on a metal label. When you register that number it creates a link with your identity. Then if your bag is reported as lost and found, Terralinq will attempt to contact you with its location and the finder''s contact information.', '', '', '124.9500', '0.0000', '0.0000', '0.0000', '124.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 23, 1231762274, 8, 7, '', '', '', 'product.html', 0, 1, 0, '', '5', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
118(22, 'Logitech Pure-Fi Anywhere Speakers', 1, 'PUREFI', '', 'The Pure-Fi Anywhere speaker system uses a unique combination of speaker drivers to deliver clear sound with maximum bass and minimal distortion. Its compact size and long battery life make it the ideal companion to your iPod or iPhone.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Advanced acoustics for exceptionally clear sound</li><li>Three-inch pressure drivers to maximize bass response</li><li>StereXL technology widens the stereo image dramatically</li><li>Ten-hour rechargeable battery for longer listening</li><li>Battery-level indicator eliminates surprises</li><li>Travel case to protect and store speakers.</li><li>iPhone or iPod charged whenever it''s docked</li><li>Wireless remote to control your iPod or iPhone and browse content</li></ul>', '', '', '129.9500', '0.0000', '0.0000', '0.0000', '129.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.6000', '13.2000', '3.6000', '1.5000', '0.0000', 0, 0, 0, 0, 22, 1231762483, 4, 5, '', '', '', 'product.html', 0, 1, 0, '', '7,8', 0, 3, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
119(23, 'Apple In-Ear Headphones with Remote and Mic', 1, 'APPLE-INEAR', '', 'Hear every detail of your music every time you tune in with the Apple In-Ear Headphones with Remote and Mic. They offer pro audio performance and impressive sound isolation, and convenient buttons let you adjust the volume and control music and video playback.<br/><br/><span style="font-weight: bold;">Rediscover your music.</span><br/>Put on the Apple In-Ear Headphones, select your favorite track, and hear musical details you never knew existed. It''s almost like you''re experiencing your music for the first time.<br/><br/><span style="font-weight: bold;">Technical Specifications</span><br/><ul><li>Frequency response: 5Hz to 21kHz</li><li>Impedance (at 100Hz): 23 ohms</li><li>Sensitivity (at 100Hz): 109 dB SPL/mW</li><li>Drivers: Custom two-way balanced armature (woofer and tweeter in each earpiece)</li></ul>', '', '', '79.0000', '0.0000', '0.0000', '0.0000', '79.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '2.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 25, 1231762609, 1, 13, '', '', '', 'product.html', 0, 1, 0, '', '7,8', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
120(24, 'Apple iPod Socks', 1, 'IPOD-SOCKS', '', 'So add a dash of color to your iPod with iPod Socks, the year''s coziest and most vibrant iPod accessory.<br/>It doesn''t matter which iPod model you have because iPod Socks fit all of them. And it doesn''t matter what your mood is because each iPod Socks package includes six bright colors so you can pick the one that feels best.<br/><br/>Forgive us if we''re stating the obvious, but here''s how it works: Just slide your iPod into the sock to keep it safe and warm. Slide it out to dock or change playlists. It''s as easy as... putting on a pair of socks.', '', '', '29.0000', '0.0000', '0.0000', '0.0000', '29.0000', 0, 1, 1, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 41, 1231762724, 1, 31, '', '', '', 'product.html', 0, 1, 0, '', '8', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
121(25, 'Incase Sports Armband for iPod Nano', 1, 'INCASE-NANO', '', 'Constructed out of lightweight, washable neoprene and reflective materials, the adjustable Incase Sports Armband is the functional and secure way to carry your iPod nano during your run or workout. The heavy-duty velcro adjustment provides for a universal fit while the clear cover allows convenient access to widescreen and touch controls.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Complete protection for iPod nano Form-fitting, washable neoprene construction Reflective material for enhanced visibility</li><li>Velcro adjustment for universal fit</li><li>Easy access to headphone jack, hold switch, and dock connector</li><li>Custom fit for iPod nano (4th. Gen.)</li></ul>', '', '', '29.9500', '0.0000', '0.0000', '0.0000', '29.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '3.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 25, 1231762873, 9, 10, '', '', '', 'product.html', 0, 1, 0, '', '8', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
122(26, 'Speck PixelSkin Case for iPhone 3G', 1, 'SPECK-IPHONE', '', 'Fun color and soft, tiled textures make the Speck PixelSkin case the ideal way to protect your iPhone 3G. This durable, rubberized case helps you keep your grip on your iPhone and fully protects against bumps and scrapes without adding bulk. Plus, PixelSkin layers on style and not frustration with complete access to all ports and controls while cased.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Soft matte-finish provides comfort and extra grip</li><li>Tiled textured surfaces enhance contrast and add character</li><li>Lightweight, durable design protects without adding bulk</li><li>Front raised ridges recess your screen to protect it when placed face down</li><li>Complete access to all ports, controls, and sensors while cased</li></ul>', '', '', '24.9500', '0.0000', '0.0000', '0.0000', '24.9500', 0, 1, 0, 0, '-1', 0, 0, 1, '', '2.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 26, 1231763092, 7, 6, '', '', '', 'product.html', 0, 1, 0, '', '7', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
123(27, 'Apple iPhone Bluetooth Headset', 1, 'APPLE-BLUE', '', 'Enjoy wireless convenience and crystal-clear audio when talking on your iPhone. The iPhone Bluetooth Headset features a single button that lets you make and receive phone calls simply and intuitively. And the innovative design is sure to turn a few heads.<br/><br/><span style="font-weight: bold;">Features</span><br/><ul><li>Up to 5.5 hours of talk time; up to 72 hours of standby time*</li><li>Lightweight earpiece for a secure, comfortable fit in left or right ear</li><li>Convenient autopairing with iPhone</li><li>Stylish anodized aluminum casing</li></ul>', '', '', '99.0000', '0.0000', '0.0000', '0.0000', '99.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '1.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 27, 1231763168, 1, 9, '', '', '', 'product.html', 0, 1, 0, '', '7', 0, 0, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0),
124(28, 'Mac Pro', 1, 'MAC-PRO', '', 'Boost your productivity with the Apple Mac Pro desktop PC - the fastest Mac Apple has ever made. Combining two of Intel''s new 64-bit, 45-nanometer Quad-Core Xeon 5400 processors running at 2.8 GHz, the Mac Pro is an unbelievably powerful workstation that can handle even the most intensive graphics rendering.<br/><br/><span style="font-weight: bold;">8 cores, standard.</span><br/>8-core processing was once reserved as a high-end option. Now it''s at the heart of the Mac Pro line. This incredible power stems from all-new Quad-Core Intel Xeon “Harpertown” processors, featuring speeds up to 3.2GHz and 12MB of L2 cache per processor.<br/><br/><span style="font-weight: bold;">Blazing fast, up to 2x performance.</span><br/>With its 8-core processing, advanced Xeon architecture, 1600MHz dual independent front-side buses, and 800MHz memory, the new Mac Pro delivers up to 2x greater application performance.2<br/><br/><span style="font-weight: bold;">Up to 4TB storage, RAID, and SAS.</span><br/>The cable-free, direct-attach hard drive bays make it easy to install up to 4TB of storage with Serial ATA 3Gb/s drives. For enhanced data protection, the optional Mac Pro RAID card delivers hardware RAID levels 0, 1, 5, and 0+1. Used with this card, 15,000-rpm SAS drives bring added performance to RAID configurations.<br/><br/><span style="font-weight: bold;">The new generation of graphics.</span><br/>All new, high-performance graphics cards from ATI and NVIDIA offer even greater performance for 3D and graphics- intensive applications. For more power, upgrade to a workstation-class card with up to 1.5GB of memory. All cards now support up to two 30-inch Apple Cinema HD displays.<br/><br/><span style="font-weight: bold;">Technical Details</span><br/><ul><li>Two 2.8 GHz quad-core Intel Xeon processors with dual-independent 1600 MHz front side buses</li><li>2 GB RAM expandable up to 32 GB, 320 GB hard drive, 16x Double-Layer SuperDrive</li><li>ATI Radeon HD 2600 XT 256MB (Two dual-link DVI)</li><li>Two FireWire 800 ports, two FireWire 400 ports, five USB 2.0 ports, and two USB 2.0 ports on keyboard</li><li>Mac OS X v10.5 Leopard (includes Time Machine, Quick Look, Spaces, Spotlight, Dashboard, Mail, iChat, Safari, Address Book, QuickTime, iCal, DVD Player, Photo Booth, Front Row, Xcode Developer Tools), iLife ''08 (includes iTunes, iPhoto, iMovie, iDVD, iWeb, and GarageBand)</li></ul>', '', '', '2799.0000', '0.0000', '0.0000', '0.0000', '2799.0000', 0, 1, 0, 0, '-1', 0, 0, 1, '', '3.0000', '0.0000', '0.0000', '0.0000', '0.0000', 0, 0, 0, 0, 28, 1231812464, 1, 22, '', '', '', 'product.html', 0, 1, 0, '', '1', 0, 1, 0, '0', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '', 'New', 0, 0, 0, 0, 0, '', 0, 0, 0, 'product', '', 1, NULL, 1, 1, '', 0, 0);