-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2087 lines (1915 loc) · 137 KB
/
index.html
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>
<!--
VERSION: 2013-3-21-12-18-00
-->
<meta charset="utf-8">
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<link href="onepageapp.css" rel="stylesheet" type="text/css"/>
<!--
-->
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Puritan:400,400italic,700,700italic:latin', 'Cabin+Condensed:400,500,600,700:latin', 'Abel::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
<script src="font-cabin.js" type="text/javascript"></script>
<script src="mspring.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
/*
* FeedEk jQuery RSS/ATOM Feed Plugin
* http://jquery-plugins.net/FeedEk/FeedEk.html
* Author : Engin KIZIL
* http://www.enginkizil.com
*/
(function($){$.fn.FeedEk=function(opt){var def={FeedUrl:'',MaxCount:5,ShowDesc:true,ShowPubDate:true};if(opt){$.extend(def,opt)}var idd=$(this).attr('id');if(def.FeedUrl==null||def.FeedUrl==''){$('#'+idd).empty();return}var pubdt;$('#'+idd).empty().append('<div style="text-align:left; padding:3px;"><img src="images/feedek-loading.gif" /></div>');$.ajax({url:'//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num='+def.MaxCount+'&output=json&q='+encodeURIComponent(def.FeedUrl)+'&callback=?',dataType:'json',success:function(data){$('#'+idd).empty();$.each(data.responseData.feed.entries,function(i,entry){$('#'+idd).append('<div class="ItemTitle"><a href="'+entry.link+'" target="_blank" >'+entry.title+'</a></div>');if(def.ShowPubDate){pubdt=new Date(entry.publishedDate);$('#'+idd).append('<div class="ItemDate">'+pubdt.toLocaleDateString()+'</div>')}if(def.ShowDesc)$('#'+idd).append('<div class="ItemContent">'+entry.content+'</div>')})}})}})(jQuery);
/* FeedEk */
</script>
<script type="text/javascript">
$.fn.doesExist = function(){
// a doesExist function
return jQuery(this).length > 0;
};
var jqesc = function(str) {
// escape a jquery selector
return str.replace(/([#;\/&,\.\+\*\~':"\!\^$\[\]\(\)=>\|])/g, "\\$1");
}
var defaultTransIn = function($page){
$page.fadeIn(1000);
return 1000;
}
var defaultTransOut = function($page){
$page.fadeOut(1000);
return 1000;
}
var defaultInitFunction = function($page){
//Default Init does nothing, but here for structural symmetry
}
var defaultDestroyFunction = function($page){
for(var i=0; i<app.currentIntervals.length; i++){
clearInterval(app.currentIntervals[i]);
}
app.currentIntervals = [];
}
var app = {
//an Object containing any non-default functionality
pages : {},
//a map of page location strings to template ids to load
pageAlias : {},
currentIntervals : []
};
var path = document.URL;
$(function(){
var $templates = $("#templates").children();
$templates.each(function(){
$(this).hide();
});
$("#mainContentArea").append($templates);
//set current template (page handler)
if(document.URL.indexOf("#!") !== -1){
path = document.URL.split("#!")[1];
showFromLocation(document.URL.split("#!")[1]);
} else {
showFromLocation("/");
}
if(typeof window.onpopstate == 'object') {
window.onpopstate = function(event) {
handlePopState(event.state);
}
}
});
var handlePopState = function(state){
showFromLocation(state);
}
var showFromLocation = function(location){
//Find page if it exists, else the 404 page
// alert(location);
console.log("called showFromLocation('"+location+"')");
var ourURI = location.toString();
if ( ourURI.indexOf('#!') >= 0) {
ourURI = ourURI.substring( ourURI.indexOf('#!')+2 ); // strip up to and after #!
}
if ( $('#'+jqesc(ourURI)).doesExist() ) {
console.log('going to div '+ourURI);
show($('#'+jqesc(ourURI)) );
} else if(typeof app.pageAlias[ourURI] !== "undefined"){
console.log("using pageAlias "+ourURI);
show($("#"+app.pageAlias[ourURI]));
} else {
console.log('missed '+ourURI+' going to 404');
show($("#404"));
}
//Use pushstate to change URL
try {
window.history.pushState(location, app.pageAlias[ourURI]+" title", location);
}
catch(err) {
console.warn("Pushstate attempt failed!");
}
}
var show = function($nextPage){
var id;
//Transition out current page, if it exists
var delay = 0;
if(typeof app.currentPage !== "undefined"){
id=app.currentPage.attr("id");
var transitionOutFunction;
if(typeof app.pages[id] !== "undefined" && typeof app.pages[id]["transitionOut"] !== "undefined")
transitionOutFunction = app.pages[id]["transitionOut"];
if(typeof transitionOutFunction === "undefined")
transitionOutFunction = defaultTransOut;
delay = transitionOutFunction(app.currentPage);
var destroyFunction;
if(typeof app.pages[id] !== "undefined" && typeof app.pages[id]["destroy"] !== "undefined")
destroyFunction = app.pages[id]["destroy"];
if(typeof destroyFunction === "undefined") {
destroyFunction = defaultDestroyFunction;
console.log(id);
}
destroyFunction(app.currentPage);
}
id=$nextPage.attr("id");
//Transition in next page
setTimeout(function(){
var transitionInFunction;
if(typeof app.pages[id] !== "undefined" && typeof app.pages[id]["transitionIn"] !== "undefined")
transitionInFunction = app.pages[id]["transitionIn"];
if(typeof transitionInFunction === "undefined")
transitionInFunction = defaultTransIn;
var initDelay = transitionInFunction($nextPage);
app.currentPage = $nextPage;
var initFunction;
if(typeof app.pages[id] !== "undefined" && typeof app.pages[id]["init"] !== "undefined")
initFunction = app.pages[id]["init"];
if(typeof initFunction === "undefined")
initFunction = defaultInitFunction;
initFunction($nextPage);
}, delay);
};
//TESTING SCRIPT
//var showRandomPage = function(){
// var index = Math.floor(Math.random() * 5);
// var i = 0;
// var location = "";
// for(l in app.pageAlias){
// if(i === index)
// location = l;
// i++;
// }
// showFromLocation(location);
// }
//setInterval(function(){
// showRandomPage();
//}, 5000);
</script>
<script type="text/javascript" charset="utf-8" src="Services_animation_edgePreload.js"></script>
<script type="text/javascript" charset="utf-8" src="Were_Different_edgePreload.js"></script>
</head>
<body>
<div id="content">
<div class="wrapper">
<div id="header">
<div class="head_top">
<div class="logo">
<a href="#!/"><img src="images/zoovy_logo.png"/></a>
</div>
<div class="logo_navi">
<ul>
<li><a href="#!/about-contact.html">Contact</a></li>
<li>|</li>
<!--
<li>
<a id="loginlink"
href="https://www.zoovy.com/app/latest/app-domainlookup.html">Customer Login</a>
<script type="text/javascript">
// need to append a unique non-cachable date time to #loginlink
var d = new Date();
$('#loginlink').attr("href", $('#loginlink').attr("href")+'?v='+d.toString());
</script>
</li>
<li>|</li>
-->
<li><a id="loginlink" href="#!/login.html">Login</a></li>
<li>|</li>
<li style="color:#000;">1.877.966.8948</li>
</ul>
</div>
</div>
<div class="main_nav">
<ul>
<li><a href="#!/different.html">WE'RE DIFFERENT</a></li>
<li>
<a href="#!/services.html">SERVICES</a>
<ul>
<li><a href="#!/building-apps.html">Building Apps</a>
<ul>
<li><a href="#!/building-apps-design.html">Design</a></li>
<li><a href="#!/building-apps-development.html">Development</a></li>
<li><a href="#!/building-apps-testing.html">Testing</a></li>
</ul>
</li>
<li><a href="#!/live-training-support.html">Live Training & Support</a></li>
<li><a href="#!/marketing-development.html">Marketing Development</a></li>
<li><a href="#!/marketplace-optimization.html">Marketplace Optimization</a></li>
</ul>
</li>
<li><a href="#!/features.html">FEATURES</a>
<ul>
<li><a href="#!/features-amazon.html">Amazon</a></li>
<li><a href="#!/features-ebay.html">eBay</a></li>
<li><a href="#!/features-order-management.html">Order Management</a></li>
<li><a href="#!/features-marketplaces.html">Marketplaces</a></li>
<li><a href="#!/features-comparison-shopping.html">Comparison Shopping</a></li>
<li><a href="#!/features-multiple-stores.html">Multiple Stores</a></li>
<li><a href="#!/features-wholesale-supplychain.html">Wholesale/Supply Chain</a></li>
</ul>
</li>
<li><a href="#!/follow_us.html">FOLLOW US</a></li>
<li>
<a href="#!/about-zoovy.html">ABOUT ZOOVY</a>
<ul>
<li><a href="#!/about-management.html">Management</a></li>
<li><a href="#!/about-contact.html">Contact</a></li>
<li><a href="#!/about-employment.html">Employment</a></li>
</ul>
</li>
<li><a href="#!/news-events.html">NEWS & EVENTS</a>
<!--
<ul>
<li><a href="#!/news-events.html">News & Events</a></li>
<li><a href="#!/press-releases.html">Press Releases</a></li>
<li><a href="#!/in-the-news.html">In The News</a></li>
</ul>
-->
</li>
</ul>
</div>
</div>
<div id="mainContentArea">
</div>
<div id="footer" class="footer">
<div class="shortcuts">
<p>SHORT CUTS</p>
<div class="footer_nav">
<ul>
<li><a href="#!/about-zoovy.html">Company Information</a></li>
<li><a href="#!/about-contact.html">Contact</a></li>
<li><a href="http://blog.zoovy.com/" target="_blank">Blog</a></li>
<li><a href="#!/news-events.html">News & Press</a></li>
<li><a href="#!/legal.html">Legal & Privacy</a></li>
</ul>
</div>
</div>
<div class="register_update">
<!--
<p>REGISTER FOR UPDATES</p>
<form>
<p>Enter your email address for eCommerce specific<br/> news and Zoovy production info</p>
<span>
<label>Name:</label>
<input type="text" placeholder="Your Name"/>
</span>
<span>
<label>Email:</label>
<input type="text" placeholder="[email protected]"/>
</span>
<div class="submit_btn">
<input type="submit"/>
</div>
</form>
-->
</div>
<div class="social_icons">
<p>WE'RE MOVING FAST. KEEP UP!</p>
<div>
<a class="socialLink" href="https://plus.google.com/communities/108928399105730273026" target="_blank">
<img src="images/googleplus-512-red27x27.png" width="36" height="36"/>
<div>
Join
</div>
</a>
<a class="socialLink" href="https://www.youtube.com/ZoovyLive" target="_blank">
<img src="images/youtube.png" width="36" height="36" />
<div>
Watch
</div>
</a>
<a class="socialLink" href="https://twitter.com/ZoovyInc" target="_blank">
<img src="images/twitter_512x512.png" width="36" height="36"/>
<div>
Follow
</div>
</a>
</div>
</div>
<div class="questions">
<p>QUESTIONS?</p>
<span>
<p>For service or product questions, please call us at 877.966.8948 or <a href="mailto:[email protected]">click here</a> to submit a ticket<br/><br/>
Want to work here? <a href="Mailto:[email protected]">Click here</a></p>
</span>
</div>
<div class="copyright">© 2013 Zoovy, Inc. All right reserved. All symbols and logos are the property of their respective owners.</div>
</div>
</div>
</div>
<div id="templates" style="display:none;">
<div id="servicesBanner" class="header_bg">
<div class="EDGE-11710536"></div>
</div>
<div id="differentBanner" class="header_bg">
<div class="EDGE-1205631013"></div>
</div>
<div id="home">
<script type="text/javascript">
app.pageAlias["/"] = "home";
</script>
<div class="slider">
<a href=""><img src="images/slider.jpg"/></a>
</div>
<div class="stng_standerd">
<h3>A NEW VISION</h3>
<span class="stng_details"><p>
We are here and ready to change the way commerce is done.
In the year 2013 we released a new platform that is simply unparalleled to anything else available today.
We are now ready to equip companies with innovative new tools that easily bridge the gap between new and old.
Together we can grow sales online, offline, and any place in between.</p>
</span>
</div>
<div class="app_based">
<p>Utilizing the freedom and flexibility of the <span id="app_bsd">anyCommerce app-based</span> structure and the versatility of the <span id="dta_fr">Data Fair,</span> along with ground-breaking new sales and marketing technologies, Zoovy is positioned <br/> to enable businesses to reach clients in both new and old ways.</p>
<div class="app_icons">
<span class="ap_based">
<a href="#!/different.html"><img src="images/app-based_icon_white_100px.png"/></a>
<p>APP BASED</p>
</span>
<span class="dta_fair">
<img src="images/datafair_icon_white_100px.png"/>
<p>DATA FAIR</p>
</span>
<span class="mpo">
<a href="#!/marketplace-optimization.html"><img src="images/mpo_icon_white_100px.png"/></a>
<p>MARKETPLACE OPTIMIZATION</p>
</span>
</div>
</div>
<div class="partners">
<div class="amazonsss">
<a target="_blank" style="float:left;margin-left:3px;margin-top:10px;"><img style="width:73px;" src="images/amazon.png"/></a>
<img style="margin-top:10px;width:75px;" src="images/symantec_verisign2.png"/>
<a style="float:left;margin-top:11px;margin-left:2px;" target="_blank" href=""><img style="width:57px;" src="images/fedex2.png"/></a>
</div>
<div class="ebaysss">
<a style="float:left;margin-left:19px;" target="_blank" ><img style="width:55px;" src="images/ebay.png"/></a>
<a style="float:left;margin-top:14px;margin-left:12px;" target="_blank"><img style="width:59px;" src="images/buysafe2.png"/></a>
<a style="float:left;margin-top:15px;" target="_blank"><img style="width:79px;" src="images/google_analytics2.png"/></a>
</div>
<div class="shopzilasss">
<a style="float:left;margin-left:14px;" target="_blank" ><img style="width:97px;" src="images/shopzilla2.png"/></a>
<img style="margin-top:13px;width:107px;" src="images/authorizenet2.png"/>
<a style="float:left;margin-top:6px;margin-left:16px;" target="_blank"><img style="width:82px;" src="images/powerreviews2.png"/></a>
</div>
<div class="bingsss">
<img style="margin-left:21px;width:62px;" src="images/bing2.png"/>
<a style="float:left;margin-top:11px;" target="_blank" ><img style="width:79px;" src="images/quickbooks2.png"/></a>
<a style="float:left;margin-top:19px;margin-left:14px;" target="_blank"><img style="width:68px;" src="images/shipwire2.png"/></a>
</div>
<div class="amazonsss222">
<a style="float:left;margin-top:1px;" target="_blank"><img style="width:111px;" src="images/amazon_payments2.png"/></a>
<a style="float:left;margin-top:10px;" target="_blank"><img style="width:69px;" src="images/googlecheckout_.png"/></a>
<a style="float:left;margin-top:10px;" target="_blank"><img style="width:80px;" src="images/ispeakvideo2.png"/></a>
</div>
<div class="paypalsss">
<a style="float:left;" target="_blank"><img style="width:64px;" src="images/paypal2.png"/></a>
<a style="float:left;margin-top:10px;" target="_blank"><img style="width:102px;" src="images/endicia_and_dymo2.png"/></a>
<a style="float:left;margin-top:10px;" target="_blank"><img style="width:59px;" src="images/ups_ready.png"/></a>
</div>
</div>
</div>
<div id="aboutus">
<script type="text/javascript">
app.pageAlias["/corporate/aboutus.html"] = "aboutus";
app.pages.aboutus = {
init : function(){
app.currentIntervals.push(setInterval(function(){
$("#blah").fadeIn(250);
setTimeout(function(){
$("#blah").fadeOut(250);
}, 250);
}, 500));
}
};
</script>
about us
<div id="blah">
animation
</div>
</div>
<div class="wrapper" id="different">
<script type="text/javascript">
app.pageAlias["/different.html"] = "different";
app.pages.different= {
init : function($page){
$("#differentBanner").fadeIn(1000);
},
destroy : function($page){
$("#differentBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="wer_differnt">
<h3>We're Different</h3>
<span class="old_way">
<h4>The Old Way</h4>
<p>In the past, one of the biggest challenges in growing a successful online business was choosing the appropriate technology for your business needs. For many, it was a difficult choice because merchants had to do it first, locking them into the way that technology worked, not the way the merchant wanted to. Merchants soon found that the solution they chose was either too limited to allow them to grow, or too complicated to get up and running efficiently.<br/><br/>
Being locked in to a specific, one-size fits all technology was not very conducive to businesses that needed to set themselves apart and do things differently. They soon found that if they wanted to grow, they would need to spend a lot of time, resources and money to take the next big jump.
</p>
<img src="images/different_img.jpg"/>
</span>
<span class="apps">
<h4>Apps Are Where It's At</h4>
<p>With Zoovy's app-based commerce framework, your stores are now custom tailored to your business needs. As your business grows and your needs change, through app updates, your store can change right along with it. And the best part is, you don't have to start over from scratch everytime! Your store is designed to accomodate iterative updates, allowing you more flexibility as your business grows.</p>
</span>
<span class="apps_provide">
<h4>Apps provide:</h4>
<ul>
<li>an enhanced user experience for your customers</li>
<li>lower operating costs.</li>
<li>customization and flexibility (websites have severe limitations).</li>
<li>quicker time to market - apps take weeks, websites take months.</li>
<li>deployment options and flexibility.</li>
</ul>
</span>
<span class="everything">
<h4>Everything is Here</h4>
<p>Zoovy incorporates all of the technologies and processes needed to grow successfully, and makes them available through one, easy-to-manage account. Zoovy's long standing partnerships with proven e-commerce industry names ensures the tightest integration and streamlined functionality for your business process. With over 13 years of field-tested input from thousands of successful online merchants, Zoovy is poised to lead the next e-commerce revolution.</p>
</span>
</div>
<div class="review_srvcs">
<a href="#!/services.html"><h1>Review our services here!</h1><img src="images/blue_right_arrow.png"/></a>
</div>
</div>
</div>
<div class="wrapper" id="login">
<script type="text/javascript">
app.pageAlias["/login.html"] = "login";
app.pages.login = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<span>
<h1>Login Instructions</h1>
<h2>please go to https://www.YOUR-DOMAIN.com:9000/</h2>
(replace YOUR-DOMAIN with any domain associated on the account with
valid DNS)
<br>
<br>
<h3>When did this change?</h3>
The login process changed in Oct 2013 as part of a migration to the Amazon Cloud.
<br>
<h3>Why did this change?</h3>
Servers were decentralized and security was improved.
This login approach offers increased reliability, and also enhanced security.
The server which hosts this page cannot provide login credentials, each backend is completely autonomous.
<h3>Why is this more secure?</h3>
Clients with servers on private clouds can filter administrative access using
cloud TCP/IP firewall rules (tcp port 9000). Thereby limiting
remote access to only allowed internal IP addresses. Using this
approach it is possible to lock out all access including Zoovy Support.
</span>
</div>
</div>
<div class="wrapper" id="services">
<script type="text/javascript">
app.pageAlias["/services.html"] = "services";
app.pages.services = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="header_bg">
</div>
<div class="container">
<div class="services_app">
<h3>From Apps, to Premiere Services to Support,<br/>We have you covered</h3>
<p>Here at Zoovy, we have worked diligently to provide our customers with the most all-encompassing and exstensible e-commerce solution out there. Other companies focus on specific areas of e-commerce, leaving you to figure out for yourself how to integrate new features or update current features when your business grows. We have integrated all of the mission-critical components so you can focus on your business and not your e-commerce technology.</p>
</div>
<div class="develop_apps">
<h3>Develop Your Apps</h3>
<span class="descrptn">
<p>With our emerging app framework, your custom apps will give you unparalleled control over your apps' behavior and business information. You'll need to create your apps and our team is standing by to help. </p>
</span>
<span class="des_icons">
<a href="#!/building-apps.html"><img src="images/service_path.png"/></a>
</span>
<span class="learn_here">
<img src="images/orange_right_arrow.png"/><a href="!#/building-apps.html">Learn how the process works here</a>
</span>
</div>
<div class="develop_apps">
<h3>Live Training & Support</h3>
<div class="consultation">
<span class="descrptn" style="width:80%;">
<p>Need help with creating or updating your DataFair? No problem. Our team invented the DataFair! We are standing by to help you get your vital business information ported and situated properly.</p>
</span>
<span class="des_icons">
<img src="images/data_fair_circle.png" style="width:68px;margin:0 10px 0 0;"/>
</span>
</div>
<div class="consultation" style="padding:0;">
<span class="descrptn" style="width:80%;">
<p>We have also worked very hard to provide custom development for add-on apps like Special Offers and Checkout Intercept, just to name a few. If there's a business idea or initiative that you think an app would be perfect for, our team would love to join forces with you to come up with a solution.</p>
</span>
<span class="des_icons">
<img src="images/sup_circle.png" style="width:68px;margin:0 10px 0 0;"/>
</span>
</div>
<span class="learn_here">
<a href="#!/live-training-support.html"><img src="images/orange_right_arrow.png"/>Learn more about our support structure here</a>
</span>
</div>
<div class="develop_apps" style="padding:0 0 60px 0;">
<h3>Strategies & Solutions</h3>
<p>The landscape of e-commerce is changing rapidly. WIth more and more sellers using Marketplaces like Amazon, Ebay, Buy.com, etc., the rules of engagement are in flux. No longer will SEO win the day. Winning the BuyBox will make all the difference.<br/><br/></p>
<span class="descrptn" style="width:80%;">
<p>Here at Zoovy, we have identified the next critical strategy in e-commerce as it pertains to selling through marketplaces. Winning the BuyBox, or as we call it, Marketplace Optimization™ (MpO), gets your products in the best possible position to be sold. Our MpO Experts will help you identify the areas of your business to improve in order to increase your frequency in the BuyBox.</p>
</span>
<span class="des_icons">
<img src="images/mpo_circle.png" style="width:68px;margin:0 10px 0 0;"/>
</span>
<span class="learn_here">
<a href="#!/marketplace-optimization.html"><img src="images/orange_right_arrow.png"/>Learn more about Marketplace Optimization here</a>
</span>
</div>
</div>
</div>
<div class="wrapper" id="building-apps">
<script type="text/javascript">
app.pageAlias["/building-apps.html"] = "building-apps";
app.pages['building-apps'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="build_apps">
<h3>
Build It and They Will Buy<br/><span style="font-size:22px;">(... and have a better experience!)</span>
</h3>
<p>At the center of your e-commerce universe is your DataFair, consisting of your business information and your custom apps. But you need to get your apps built and your business information installed, right? We have you covered. Say go, and our project manager will build a team of experts who will help you get up and running quickly and efficiently.<br/><br/>
Our designers, developers and testers are chomping at the bit to work on your apps. Just let us know what you need and we'll get our best and brightest to build it for you. Or, you can have your own team build your apps. We have standards and guides for them to go by. Just know that they will be held to the same standards and will undergo the same vigorous testing as the apps we build do.<br/><br/>
Your app will start at the DESIGN stage, move to the DEVELOPMENT stage, and then proceed to the TESTING stage. Expect there to be 2-4 rounds of this process until your app is ready for prime time.
</p>
</div>
<div class="web_icons">
<div class="icons_img">
<a class="design" href="#!/building-apps-design.html"></a>
<span class="arrow"></span>
<a class="develop" href="#!/building-apps-development.html"></a>
<span class="arrow1"></span>
<a class="test" href="#!/building-apps-testing.html"></a>
</div>
<div class="icons_name">
<a class="design" href="#!/building-apps-design.html">DESIGN</a>
<a class="develop" href="#!/building-apps-development.html">DEVELOPMENT</a>
<a class="test" href="#!/building-apps-testing.html">TESTING</a>
</div>
</div>
<div class="process">
<a href="#!/building-apps-design.html"><h1>The Process Starts here!</h1><img src="images/blue_right_arrow.png"/></a>
<a href="#!/building-apps-design.html">Designing your app is the first step...</a>
</div>
</div>
</div>
<div class="wrapper" id="building-apps-design">
<script type="text/javascript">
app.pageAlias["/building-apps-design.html"] = "building-apps-design";
app.pages['building-apps-design'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="build_apps">
<h3>
Design: How do you want that to look?
</h3>
<p>With the app framework, you have far more freedom in designing your store than you used to have designing for the Web. Our designers are well versed in these expanded capabilities and will design just about anything you can imagine, keeping in mind aspects of good design, user experience, interaction and shopping best practices.
</p>
</div>
<div class="web_icons">
<div class="icons_img">
<a class="design_active" href="#!/building-apps-design.html"></a>
<span class="arrow"></span>
<a class="develop_nonactive" href="#!/building-apps-development.html"></a>
<span class="arrow1_nonactive"></span>
<a class="test_nonactive" href="#!/building-apps-testing.html"></a>
</div>
<div class="icons_name">
<a class="design" href="#!/building-apps-design.html">DESIGN</a>
<a class="develop" href="#!/building-apps-development.html">DEVELOPMENT</a>
<a class="test" href="#!/building-apps-testing.html">TESTING</a>
</div>
</div>
<div class="developer_take">
<h1><a href="#!/building-apps-development.html">Developers take over next</a></h1><img src="images/blue_right_arrow.png"/>
</div>
</div>
</div>
<div class="wrapper" id="building-apps-development">
<script type="text/javascript">
app.pageAlias["/building-apps-development.html"] = "building-apps-development";
app.pages['building-apps-development'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="build_apps">
<h3>
Development: Build that App
</h3>
<p>Our network of developers is bigger than yours. But that's a good thing! It means that we have the appropriate resources to develop your app with all of the functionality and efficiency the app framework affords you. We even make sure that the team members working on your apps are all connected and communicate with one another via a dedicated project management system (Podio). This, along with the development platform known in the industry as GITHUB, your app project stays on track and on time with as many or as few team members necessary.
</p>
</div>
<div class="web_icons">
<div class="icons_img">
<a class="design_nonactive" href="#!/building-apps-design.html"></a>
<span class="arrow_nonactive"></span>
<a class="develop_active" href="#!/building-apps-development.html"></a>
<span class="arrow1"></span>
<a class="test_nonactive" href="#!/building-apps-testing.html "></a>
</div>
<div class="icons_name">
<a class="design" href="#!/building-apps-design.html">DESIGN</a>
<a class="develop" href="#!/building-apps-development.html">DEVELOPMENT</a>
<a class="test" href="#!/building-apps-testing.html">TESTING</a>
</div>
</div>
<div class="test_app">
<h1><a href="#!/building-apps-testing.html">Test your app next</a></h1><a href="#!/building-apps-testing.html"><img src="images/blue_right_arrow.png"/></a>
</div>
</div>
</div>
<div class="wrapper" id="building-apps-testing">
<script type="text/javascript">
app.pageAlias["/building-apps-testing.html"] = "building-apps-testing";
app.pages['building-apps-testing'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="build_apps">
<h3>
Testing: Is it up to snuff?
</h3>
<p>After the design and development stage are complete, the app is then subject to our vigorous testing protocol. Does it work on a desktop in a browser? We test for that. Does it work on the 20 different phones and 10 different tablets indicated? Yeah, we test for that too. We make sure it does everything it is supposed to do so that when you deploy it, it works.
</p>
<span class="qoutes">
<h1>"We will release no app before its time" </h1>
<p>–B.R. Hamilton, Master Tester </p>
</span>
<p>On the first round, there are always things to be refined, fixed or changed. Items to be addressed will be directed to the appropriate team member to work on. Once that list is complete, it will return to the testing stage for another attempt to pass.</p>
</div>
<div class="web_icons">
<div class="icons_img">
<a class="design_nonactive" href="#!/building-apps-design.html"></a>
<span class="arrow_nonactive"></span>
<a class="develop_nonactive" href="#!/building-apps-development.html"></a>
<span class="arrow1_nonactive"></span>
<a class="test_active" href="#!/building-apps-testing.html"></a>
</div>
<div class="icons_name">
<a class="design" href="#!/building-apps-design.html">DESIGN</a>
<a class="develop" href="#!/building-apps-development.html">DEVELOPMENT</a>
<a class="test" href="#!/building-apps-testing.html">TESTING</a>
</div>
</div>
<div class="build_apps">
<p>The future is now! The app framework is where the e-commerce world will find itself within the next few years. Contact your Customer Service Representative or email us at <a href="mailto:[email protected]">[email protected]</a> for more information and get started with your new app-based store today!</br></br></br>
</p>
</div>
<!--div class="developer_take">
<h1><a href="#">Developers take</a> over next</h1><img src="images/blue_right_arrow.png"/>
</div-->
</div>
</div>
<div class="wrapper" id="live-training-support">
<script type="text/javascript">
app.pageAlias["/live-training-support.html"] = "live-training-support";
app.pages['live-training-support'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="live_support">
<h3>We're here to help</h3>
<span class="live training">
<h4>Live Training (by phone)</h4>
<p>Live training is provided for Zoovy merchants to assist in setup and ongoing guidance for successful use of the platform and software. Consultants are fully trained Zoovy employees. </p>
<ul>
<li>Store Settings</li>
<li>Shipping</li>
<li>Sales Tax</li>
<li>Marketplace Syndication</li>
<li>Promotions: Coupons/Newsletters/Giftcards </li>
<li>Product Catalog</li>
</ul>
<p>Live training can be scheduled M-F and cost is dependent upon package.</p>
<h4>USA Based Tech Support</h4>
<p>Tech support is available 6am to 6pm PST, 6 days a week. Zoovy tech support is available through phone, help-desk platform, and live chat. All techs are fully trained on all aspects of Zoovy interface and integrations. </p>
</div>
</div>
</div>
<div class="wrapper" id="marketing-development">
<script type="text/javascript">
app.pageAlias["/marketing-development.html"] = "marketing-development";
app.pages['marketing-development'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="live_support">
<h3><span style="font-size:28px;">Marketing dollars working as hard as they could be?</span></h3>
<span class="live training">
<p>Zoovy's marketing experts evaluate marketing efforts to ensure that an e-business's budget is being distributed to the best possible areas. </p>
<p>Work with trained and certified professionals on appropriate
white hat
suggestions for marketing opportunities on any budget. From pay-per-click advertising to search engine optimization Zoovy's marketing team is available for tasks large or small. Work directly with our marketing professionals just a phone call away.</p>
<ul>
<li>Increase sales</li>
<li>Increase brand awareness</li>
<li>Maximize return-on-investment</li>
<li>Increase organic traffic</li>
</ul>
<h4>Marketing Services:</h4>
<ul>
<li>Marketing Overview Analysis</li>
<li>Comparison Shopping Engine Setup</li>
<li>Pay-Per-Click Audit </li>
<li>Google Analytics Tuning / Optimization </li>
<li>ROI Tracking</li>
<li>Return e-business Management</li>
<li>Pay-Per-Click Management</li>
<li>Data Feed Management & Optimization</li>
<li>Consulting</li>
<li>Search Engine Optimization</li>
<li>Marketplace Setup & Product Upload</li>
<li>Marketplace Optimization</li>
</ul>
<p>Zoovy's marketing team has years of experience and proven success with providing top notch marketing service and advice for any e-business selling various products.</p>
</div>
</div>
</div>
<div class="wrapper" id="marketplace-optimization">
<script type="text/javascript">
app.pageAlias["/marketplace-optimization.html"] = "marketplace-optimization";
app.pages['marketplace-optimization'] = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="live_support">
<h3>Marketplace Optimization (MpO)<br/><span style="font-size:24px;">Improve seller performance with this new strategy</span></h3>
<br>
<h4>What is Marketplace Optimization?</h4>
<p>Marketplace Optimization is a revolutionary new concept in the ever changing online marketplace. Emerging software and services are used to optimize a company's sales strategy in order to increase seller ranking on multiple marketplaces (Amazon, eBay, etc.).</p>
<p>A Marketplace Optimization Expert provides insight into the individual ranking algorithms (signals) used by marketplaces to recommend sellers to prospective buyers. By identifying and improving signal performance a company will receive preference, resulting in increased exposure (sales) on a marketplace by winning the "Buy Box".</p>
<p>
<h4>Increase Sales at:</h4>
<div class="center">
<br>
<h4>Ranking Signals</h4>
<p>Below is a sample of the signals a marketplace could use to rank sellers: </p>
<ul>
<li>Total Cost to Buyer (including shipping)</li>
<li>Overall Order Cancellation Rate of the Seller</li>
<li>Shipping Latency</li>
<li>History and Experience of the Seller on the Marketplace</li>
<li>Overall Customer Feedback</li>
<li>Available Inventory for Purchase</li>
<li>Order Defect Rate as a % of Gross Sales</li>
<li>Late Shipments as a % of Total Shipments</li>
<li>Gross Sales</li>
<li>Total # of Sales on Marketplace</li>
</ul>
<p></p>
<h4>Zoovy: The Complete MpO Solution</h4>
<p>The Zoovy e-Commerce platform is the best Marketplace Optimization Solution available to businesses. Our award winning software delivers improvements in all 5 functional areas of marketplace optimization, along with trained professionals who can advise how to use it.</p>
<div>
<div class="MPOlink">
<a target="corpPDF" href="/pdfs/marketplace_optimization.pdf">Learn more about Zoovy's Marketplace Optimization services</a>
</div>
</div>
<div>
</div>
<div class="MPOlink">
<a target="mpo" href="http://www.marketplaceoptimization.com">Learn more about Marketplace Optimization</a>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper" id="features">
<script type="text/javascript">
app.pageAlias["/features.html"] = "features";
app.pages.features = {
init : function($page){
$("#servicesBanner").fadeIn(1000);
},
destroy : function($page){
$("#servicesBanner").fadeOut(1000);
}
};
</script>
<div class="container">
<div class="features_main">
<h3>Features - We have 'em all</h3>
<p>Our e-commerce solution has all of the features and add-ons that you can imagine... and some you can't! With the flexibility of the app-framework, you have the freedom to do business your way. Explore some of the 800+ features we provide:</p>
<h4>Top Advanced features:</h4>
<span class="feature_head">
<h4>Amazon</h4>
<ul>
<li>Seamless synchronization with webstore listings with Amazon including product options such as size, color etc.</li>
<li>Product mapping - Eliminating the need to map each product individually</li>
<li>Bi-Directional Integration for UPS, FED-X and USPS tracking, automatically confirms and order has shipped</li>
</ul>
<span class="nonblock"><a href="#!/features-amazon.html">click here for more information on Amazon</a></span>
</span>
<span class="feature_head">
<h4>eBay</h4>
<ul>
<li>Increased exposure and sales</li>
<li>Easy inventory management</li>
<li>Seamless integration with all major shipping and payment providers</li>
</ul>
<span class="nonblock"><a href="#!/features-ebay.html">click here for more information on eBay</a></span>
</span>
<span class="feature_head">
<h4>Variance (aka A/B Testing)</h4>
<ul>
<li>Included in the Zoovy package.</li>
<li>A/B testing is a must power feature for the advance ecommerce sites in today's market today </li>
<li>Give a clear understanding of your specific customers needs and buying traits</li>
<li>Integrated into Zoovy, not a bolt on.</li>
<li>Google Analytics friendly</li>
</ul>
</span>
<span class="feature_head">
<h4>Mobile Commerce</h4>
<ul>
<li>No phone limitations other than HTML and Java Script enabled</li>
<li> Mature feature as Zoovy merchants have been using for over two years with their customers </li>
<li>Largest network</li>
<li>Built in reports to enable continuous optimization</li>
</ul>
</span>
<span class="feature_head">
<h4>Order Management</h4>
<ul>
<li>Flexible rules based order staging</li>
<li>Real-time integrations into payment services including Authorize.net and PayPal </li>