-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1774 lines (1670 loc) · 134 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-8-15-48-00
-->
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="onepageapp.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'BenchNine:400,300,700:latin', 'Cabin+Condensed:400,500,600,700: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 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:'http://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);
}
}
//start cloud animation
var cloud1interval = 58000;
var cloud2interval = 65000;
var cloud2delay = 7000;
var animateCloud = function($cloud, time){
$cloud.stop();
$cloud.css("left", "110%");
$cloud.animate({"left": "-"+($cloud.outerWidth() + 100)+"px"}, time - 500, "linear");
}
animateCloud($("#cloudSmall1"), cloud1interval);
setInterval(function(){animateCloud($("#cloudSmall1"), cloud1interval);}, cloud1interval);
setTimeout(function(){
animateCloud($("#cloudSmall2"), cloud2interval);
setInterval(function(){animateCloud($("#cloudSmall2"), cloud2interval);}, cloud2interval);
}, cloud2delay);
rewriteLinks();
});
var rewriteLinks = function(){
/*
var ourURI = document.URL;
if (ourURI.indexOf('#') >= 0) { ourURI = ourURI.substring(0,ourURI.indexOf('#')); } // strip after #
for (var ls = document.links, numLinks = ls.length, i=0; i<numLinks; i++){
if (ls[i].href == ourURI) {
// this link points at us, skip
}
else if (ls[i].href.substring(0,ourURI.length) == ourURI) {
console.log('rewrite - '+ls[i].href);
ls[i].onclick = function(e) {
showFromLocation(e.currentTarget.href);
return(false);
};
}
// console.log(ls[i].href+" "+ls[i].target);
}
*/
var ourURI = document.URL;
if (ourURI.indexOf('#') >= 0) { ourURI = ourURI.substring(0,ourURI.indexOf('#')); }
$("a").each(function(){
var $a = $(this);
console.log($a.attr('href'));
//console.log($a);
if(typeof $a.attr('href') !== 'undefined' && $a.attr('href').indexOf('#!') >= 0){
$a.click(function(){
console.log($a);
showFromLocation($a.attr('href'));
return false;
});
}
});
}
var handlePopState = function(state){
if(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;
destroyFunction(app.currentPage);
}
//Transition in next page
setTimeout(function(){
id=$nextPage.attr("id");
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>
</head>
<body>
<section class="wrapper">
<div id="cloudBig"></div>
<div id="cloudSmall1" ></div>
<div id="cloudSmall2" ></div>
<section class="top_sec">
<header>
<div class="logo">
<a href="#!/"><img src="images/logo.png" alt="" /></a>
</div>
<nav class="access">
<ul>
<li class="first"><a href="#!/different.html">We're Different</a></li>
<li><a href="#!/services.html" id="servicesLink" onMouseOver="showDropDown($('#servicesDropDown'), $(this));" onMouseOut="hideDropDown($('#servicesDropDown'), $(this));">Services</a></li>
<li><a href="#!/features.html" id="featuresLink" onMouseOver="showDropDown($('#featuresDropDown'), $(this));" onMouseOut="hideDropDown($('#featuresDropDown'), $(this));">Features</a></li>
<li><a href="#!/partners.html">Partners</a></li>
<li><a href="https://www.anycommerce.com/app/latest/admin.html?show=acreate">Sign me up!</a></li>
<li class="last">
<a id="loginlink" href="https://www.anycommerce.com/app/latest/admin.html">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>
</ul>
<div id="servicesDropDown" class="dropdown" onMouseOver="showDropDown($(this), $('#servicesLink'));" onMouseOut="hideDropDown($(this), $('#servicesLink'));">
<ul>
<li onMouseOver="showDropDown($('#servicesTier2DropDown'), $('#servicesLink'));" onMouseOut="hideDropDown($('#servicesTier2DropDown'), $('#servicesLink'));"><a href="#!/building-apps.html">Building Apps</a></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>
</div>
<div id="servicesTier2DropDown" class="tier2dropdown" onMouseOver="showDropDown($(this), $('#servicesLink')); showDropDown($('#servicesDropDown'), $('#servicesLink'));" onMouseOut="hideDropDown($(this), $('#servicesLink')); hideDropDown($('#servicesDropDown'), $('#servicesLink'));">
<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>
</div>
<div id="featuresDropDown" class="dropdown" onMouseOver="showDropDown($(this), $('#featuresLink'));" onMouseOut="hideDropDown($(this), $('#featuresLink'));">
<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>
</div>
<script type="text/javascript">
$("#servicesDropDown").data("timer",null);
$("#servicesTier2DropDown").data("timer",null);
$("#featuresDropDown").data("timer",null);
var showDropDown = function($dropdown, $menuItem){
//console.log("showing: "+$dropdown.attr("id"));
$menuItem.addClass('hover');
if($dropdown.data("timer") !== null){
clearTimeout($dropdown.data("timer"));
$dropdown.data("timer", null);
} else {
if($dropdown.hasClass("dropdown"))
$(".dropdown").each(function(){
if($(this).attr("id") !== $dropdown.attr("id"))
$(this).hide();
});
$dropdown.fadeIn(500);
}
}
var hideDropDown = function($dropdown, $menuItem){
//console.log("hiding: "+$dropdown.attr("id"));
$dropdown.data("timer" ,setTimeout(function(){$menuItem.removeClass('hover');$dropdown.fadeOut(500); $dropdown.data("timer", null);},500));
}
$("header > nav .dropdown").hide();
</script>
</nav>
</header>
<div id="mainContentArea">
</div>
<footer>
<div class="footer">
<div class="footer_cols col1">
<h3>SHORT CUTS</h3>
<!--
<ul>
<li>Company Information</li>
<li>Blog</li>
<li>Contact</li>
<li>News & Press</li>
<li>Legal</li>
<li>Privacy</li>
<li>Sitemap</li>
</ul>
-->
<ul>
<li><a href="#!/building-apps.html">Building Apps</a></li>
<li><a href="#!/partners.html">Partners</a></li>
<li><a href="#!/about-company.html">Company Information</a></li>
<li><a href="#!/legal.html">Legal & Privacy</a></li>
</ul>
</div>
<div class="footer_cols col3">
<div class="keepUp">
<div><h3>KEEP UP WITH <img src="images/logo.png" alt="" height="25" /></h3></div>
<div>
<a class="socialLink" href="https://plus.google.com/communities/116963859586424761606" 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/anycommerce" target="_blank">
<img src="images/youtube.png" width="36" height="36" />
<div>
Watch
</div>
</a>
<a class="socialLink" href="https://twitter.com/AnyCommerce1" target="_blank">
<img src="images/twitter_512x512.png" width="36" height="36"/>
<div>
Follow
</div>
</a>
</div>
</div>
</div>
<div class="footer_cols col4">
<h3>QUESTIONS</h3>
<p>For Service or product questions, please call us at 866-974-0332 ext 2.</p>
</div>
</div>
<div class="copyright">© 2013 anyCommerce. All right reserved. All symbols and logos are the property of their respective owners.</div>
</footer>
</section>
</section>
<div id="templates" style="display:none;">
<!-- HomePage starts here -->
<div id="home">
<script type="text/javascript">
app.pageAlias["/"] = "home";
</script>
<div class="after_header">
<div class="left">
<h1>Sell Better</h1>
<p>Utilizing the freedom and flexibility of an app-based structure and the versatility of the Data Fair, along with ground-breaking new sales and marketing technologies,
anyCommerce gives designers, developers, and retailers the tools to sell more.</p>
</div>
<div class="right">
<h6>Never has there been a more expansive <br />and versatile solution...until now.</h6>
<div class="solutions_div">
<span class="image">
<img src="images/app_fram.png" alt="" />
</span>
<span>
<h3>App Framework</h3>
<p>With the anyCommerce app-based online commerce framework, stores have more business dexterity and are poised to create stunning user experiences.</p>
</span>
</div>
<div class="solutions_div">
<span class="image">
<img src="images/data_fair.png" alt="" />
</span>
<span>
<h3>Data Fair</h3>
<p>All of your business intelligence in one, easily accessible hub, communicating with all of your stores, apps and partners, seamlessly.</p>
</span>
</div>
<div class="solutions_div">
<span class="image">
<img src="images/f2u_logo.png" alt="" />
</span>
<span>
<h3>Develop for Free</h3>
<p>Our platform and features are free-to-use for developers.
When it's time to go live check out
<a href="http://www.commercerack.com">commercerack.com</a>
to choose the perfect cloud solution provider.</p>
</span>
</div>
<!--- Old MPO on homepage
<div class="solutions_div">
<span class="image mpo">
<img src="images/mpo.png" alt="" />
</span>
<span>
<h3>Marketplace Optimization</h3>
<p>Make more sales on marketplaces because your products are in the BuyBox. We show you how to increase your presence there.</p>
</span>
</div>
--->
</div>
<div class="clear"></div>
</div>
<section class="grass"></section>
<section class="glance">
<div class="glance_inner">
<div class="head_descrptn">
<h5>Features at a Glance</h5>
<p>Sell your products via any electronic vehicle and marketplace <br />while keeping track of all of your vital business information <br />in one secure and reliable place.</p>
</div>
<div class="glancetab">
<ul>
<li>
<span class="image"><img src="images/cloudbased.png" alt="" /></span>
<span>CLOUD <br />BASED</span>
</li>
<li>
<span class="image"><img src="images/v.png" alt="" /></span>
<span>VALET <br />SERVICE</span>
</li>
<li>
<span class="image"><img src="images/sc.png" alt="" /></span>
<span>SUPPLY <br />CHAIN</span>
</li>
<li>
<span class="image"><img src="images/ms.png" alt="" /></span>
<span>MULTIPLE <br />STORES</span>
</li>
<li>
<span class="image"><img src="images/im.png" alt="" /></span>
<span>INVENTORY <br />MGT</span>
</li>
<li>
<span class="image"><img src="images/cs.png" alt="" /></span>
<span>COMPARISON <br />SHOPPING</span>
</li>
</ul>
</div>
<div class="plus100more">
<img src="images/plus100more.png" alt="" />
</div>
</div>
</section>
<section class="startselling">
<div class="startselling_inner">
<p>Learn how to expand your business and make more sales the intelligent way now - just click the sign up link to get started.</p>
<div id="signupBtnContainer">
<a href="https://www.anycommerce.com/app/latest/admin.html?show=acreate"><img src="images/Sign_Me_up_Button.png"/></a>
</div>
</div>
</section>
<section class="partners">
<div class="partners_inner">
<div class="partners_desc">
<h5>Compatible</h5>
<p>anyCommerce is tested and compatible with many popular services.
</p>
</div>
<div class="partners_logoimage">
<a href=" #!/partners.html"><img src="images/partener_img.png" alt="" /></a>
</div>
</div>
</section>
</div>
<!-- HomePage ends here-->
<!-- We're different tab starts here-->
<div id="different">
<script type="text/javascript">
app.pageAlias["/different.html"] = "different";
</script>
<div class="container">
<div class="wer_differnt">
<h3>We're Different</h3>
<span class="old_way">
<img src="images/different_img.png"/>
<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.
</p>
<p>
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>
</span>
<span class="apps">
<h4>Apps Are Where It's At</h4>
<p>With anyCommerce'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 opperating 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>anyCommerce incorporates all of the technologies and processes needed to grow successfully, and makes them available through one, easy-to-manage account. anyCommerce'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, anyCommerce 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 class="clear"></div>
</div>
<!-- We're different tab ends here-->
<!-- Services tab starts here-->
<div id="services">
<script type="text/javascript">
app.pageAlias["/services.html"] = "services";
</script>
<div class="container">
<div class="services_app">
<h3>From Apps, to Premiere Services to Support,<br/>We have you covered</h3>
<p>Here at anyCommerce, 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 Data Fair? 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"/><p class="learnsss">Learn more about our support structure here</p></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 anyCommerce, 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"/><p class="learnsss">Learn more about Marketplace Optimization here</p></a>
</span>
</div>
</div>
<div class="clear"></div>
</div>
<div id="building-apps">
<script type="text/javascript">
app.pageAlias["/building-apps.html"] = "building-apps";
</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 the DataFair which stores information in the cloud for apps.
DataFairs have several advantages over databases:
<ul>
<li>
Improved Security: DataFairs use a single api + access control layer which is completely separated from the display logic. This
results in a significantly reduced threat profile. Since there is a single point of access control, the session management system using role based permissions is able to determine the
regular 'usage' for a role and flag exceptions. Future versions will have the capability to throttle/pause suspicious behavior then alert security administrators
via SMS or App-push. For example when an admin user is accessing data records at a rate faster than their job role requires or on specially configured honey pot objects.
Either which could indicate a compromised account with admin priviledges.
</li>
<li>
Faster Access Times: Intelligent Caching by the DataFair can determine frequently used data and make
sure sstored in memory when requested. In addition hot
objects can be synchronized and cached locally on apps,
saving bandwidth, and i/o. This unique approach to
caching significantly reduces costs in environments where these services are billable.
</li>
<li>
Faster Development: a single interface to many services
and data means it's easy to get more done in less time.
</li>
</ul>
</p>
<p>
Around the world designers, developers and testers are chomping at the bit to work on your apps.
We have standards and guides for them to go by.
Each application will start at the DESIGN stage, move to the DEVELOPMENT stage, and then proceed to the TESTING stage.
</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 class="clear"></div>
</div>
</div>
<div id="building-apps-design">
<script type="text/javascript">
app.pageAlias["/building-apps-design.html"] = "building-apps-design";
</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 class="clear"></div>
</div>
<div id="building-apps-development">
<script type="text/javascript">
app.pageAlias["/building-apps-development.html"] = "building-apps-development";
</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, means 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 class="clear"></div>
</div>
<div id="building-apps-testing">
<script type="text/javascript">
app.pageAlias["/building-apps-testing.html"] = "building-apps-testing";
</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 class="clear"></div>
</div>
<div id="live-training-support">
<script type="text/javascript">
app.pageAlias["/live-training-support.html"] = "live-training-support";
</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 anyCommerce merchants to assist in setup and ongoing guidance for successful use of the platform and software. Consultants are fully trained anyCommerce 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>
</span>
<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. anyCommerce tech support is available through phone, help-desk platform, and live chat. All techs are fully trained on all aspects of anyCommerce interface and integrations. </p>
</div>
</div>
<div class="clear"></div>
</div>
<div id="marketing-development">
<script type="text/javascript">
app.pageAlias["/marketing-development.html"] = "marketing-development";
</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>anyCommerce'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 anyCommerce'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>anyCommerce'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>
</span>
</div>
</div>
<div class="clear"></div>
</div>
<div id="marketplace-optimization">
<script type="text/javascript">
app.pageAlias["/marketplace-optimization.html"] = "marketplace-optimization";
</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="increaseMPO">
<img src="images/partners/amazon.gif" />
<img src="images/partners/ebay2.gif" />
<img src="images/partners/buy-logo2.png" />
<img src="images/partners/sears.png" />
</div>
<div class="center">
<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>anyCommerce: The Complete MpO Solution</h4>
<p>The anyCommerce 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>
<p>
<a class="pdf" target="corpPDF" href="pdfs/marketplace_optimization.pdf">Learn more about anyCommerce's Marketplace Optimization services</a>
<br />
<br />
<a target="mpo" href="http://www.marketplaceoptimization.com">Learn more about Marketplace Optimization</a>
<br />
<br />
</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<!-- Services tab ends here -->
<!-- Features tab starts here -->
<div id="features">
<script type="text/javascript">
app.pageAlias["/features.html"] = "features";
</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 anyCommerce 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 anyCommerce, 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 anyCommerce 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>
<li>Automatically generated email confirmations </li>
</ul>
<span class="nonblock"><a href="#!/features-order-management.html">click here for more information on order management</a></span>
</span>
<span class="feature_head">
<h4>Seamless integration (marketplaces and comparison shopping)</h4>
<p>Built on best practices (not a bolt on solution) anyCommerce Complete comes with tight integrations with all the major vendors in the market and easily can add other vendors if needed.</p>
<p><i style="font-size:10px;margin:10px 0;float:left;">eBay - Amazon - eBay - Overstock - Bizrate - Shopzilla - Pricegrabber - Amazon - Froogle, Shopping.com - Nextag and more...</i></p>
<span class="nonblock"><a href="#!/features-marketplaces.html">click here for more information on marketplace integration</a></span>
<span class="nonblock"><a href="#!/features-comparison-shopping.html">click here for more information on comparison shopping sites</a></span>
</span>
<span class="feature_head">
<h4>Multi-Branding</h4>
<ul>
<li>Run multiple brands/stores seamlessly from one account</li>
<li>Different specialty websites can use different pricing, shipping, and promotions to increase conversions of certain customer demographics</li>
<li>Easy to use and scalable freeing up the need to add additional employees </li>
<li>No additional hosting fees for extra storefronts</li>
</ul>
<span class="nonblock"><a href="#!/features-multiple-stores.html">click here for more information on mulitple brands in anyCommerce</a></span>
</span>
<span class="feature_head">
<h4>Wholesale</h4>
<ul>