-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-10.htm
1992 lines (1776 loc) · 101 KB
/
index-10.htm
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 lang="fi">
<head>
<meta charset="utf-8"/>
<title>Etusivu | InnovaStore Suomi | Frisbeegolf-verkkokauppa</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
<meta name="description" content=""/>
<meta name="keywords" content="innova, discmania, frisbee, frisbeegolf, discgolf"/>
<meta name="copyright" content="Copyright (c) 2012- Innovastore"/>
<meta name="author" content="Innova Champion Europe"/>
<meta name="robots" content="index, follow"/>
<meta name="MSSmartTagsPreventParsing" content="true"/>
<link rel="alternate" title="InnovaStore Suomi - Etusivu" href="https://www.innovastore.fi/feed/category/60" type="application/rss+xml" />
<link rel="canonical" href="https://www.innovastore.fi/"/>
<link rel="shortcut icon" type="image/ico" href="/files/favicon.gif"/>
<meta property="og:title" content="Etusivu" />
<meta property="og:url" content="https://www.innovastore.fi/" />
<meta property="og:site_name" content="InnovaStore Suomi" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://www.innovastore.fi/files/rakennekuvat/template-2017/logo-innovastore-1200-v2.png" />
<link rel="stylesheet" type="text/css" media="screen" href="/files/fi-2017-live/styles/theme.css?v=20210510-001" />
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-659258-13', 'auto', { 'name': 'mcfEnhancedEcommerce' });
ga('mcfEnhancedEcommerce.require', 'displayfeatures');
ga('mcfEnhancedEcommerce.require', 'ec');
ga('mcfEnhancedEcommerce.set', 'currencyCode', 'EUR');
ga('mcfEnhancedEcommerce.send', 'pageview');
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3318,"name":"Innova Tour Towel - Sabattus","brand":"Innova","category":"Muut tuotteet","price":13.9,"list":"NewProducts","position":6});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3319,"name":"Innova Tour Towel - Milo McIver","brand":"Innova","category":"Muut tuotteet","price":13.9,"list":"NewProducts","position":5});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3320,"name":"Innova Tour Towel - Wildhorse","brand":"Innova","category":"Muut tuotteet","price":13.9,"list":"NewProducts","position":4});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3324,"name":"Innova Prime Fusion Performance Tee (Miesten malli)","brand":"Innova","category":"Tekstiilit","price":36.9,"list":"NewProducts","position":3});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3325,"name":"Innova Prime Fusion Performance Tee (Naisten malli)","brand":"Innova","category":"Tekstiilit","price":36.9,"list":"NewProducts","position":2});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3339,"name":"DISCatcher EZ Target","brand":"Innova","category":"Maalikorit","price":199,"list":"NewProducts","position":1});ga('mcfEnhancedEcommerce.send', 'event', 'Products', 'View', 'NewProducts', {nonInteraction: true});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3142,"name":"Star Destroyer (SockiBot Stamp)","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"HotPicks","position":10});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1386,"name":"Champion Roc3","brand":"Innova","category":"Champion Midarit","price":17.9,"list":"HotPicks","position":9});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":275,"name":"R-Pro Pig","brand":"Innova","category":"Pro, R-Pro ja XT -kiekot","price":14.9,"list":"HotPicks","position":8});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3324,"name":"Innova Prime Fusion Performance Tee (Miesten malli)","brand":"Innova","category":"Tekstiilit","price":36.9,"list":"HotPicks","position":7});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2836,"name":"Gregg Barsby Star Roadrunner","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"HotPicks","position":6});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2877,"name":"Ricky Wysocki Champion TeeBird3","brand":"Innova","category":"Champion V\u00e4yl\u00e4draiverit","price":17.9,"list":"HotPicks","position":5});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1831,"name":"Champion Thunderbird","brand":"Innova","category":"Champion Pituusdraiverit","price":17.9,"list":"HotPicks","position":4});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2083,"name":"DX Roc3","brand":"Innova","category":"DX Midarit","price":10.9,"list":"HotPicks","position":3});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3141,"name":"Star Destroyer (Ricky Wysocki Signature Stamp)","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"HotPicks","position":2});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2448,"name":"Innova Die Cut -tarra","brand":"Innova","category":"Muut tuotteet","price":1,"list":"HotPicks","position":1});ga('mcfEnhancedEcommerce.send', 'event', 'Products', 'View', 'HotPicks', {nonInteraction: true});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1831,"name":"Champion Thunderbird","brand":"Innova","category":"Champion Pituusdraiverit","price":17.9,"list":"TopSellers","position":20});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3,"name":"Barry Schultz Champion Beast","brand":"Innova","category":"Champion Pituusdraiverit","price":17.9,"list":"TopSellers","position":19});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2045,"name":"Champion Leopard3","brand":"Innova","category":"Champion V\u00e4yl\u00e4draiverit","price":17.9,"list":"TopSellers","position":18});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1628,"name":"GStar Mamba","brand":"Innova","category":"GStar Pituusdraiverit","price":18.9,"list":"TopSellers","position":17});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":106,"name":"DX Dragon","brand":"Innova","category":"DX Pituusdraiverit","price":10.9,"list":"TopSellers","position":16});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":275,"name":"R-Pro Pig","brand":"Innova","category":"Pro, R-Pro ja XT -kiekot","price":14.9,"list":"TopSellers","position":15});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":118,"name":"DX Roc","brand":"Innova","category":"DX Midarit","price":10.9,"list":"TopSellers","position":14});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":59,"name":"Star Valkyrie","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"TopSellers","position":13});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1487,"name":"Champion Mako3","brand":"Innova","category":"Champion Midarit","price":17.9,"list":"TopSellers","position":12});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1638,"name":"GStar Destroyer","brand":"Innova","category":"GStar Pituusdraiverit","price":18.9,"list":"TopSellers","position":11});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1618,"name":"XT Nova","brand":"Innova","category":"OverMold -kiekot","price":16.9,"list":"TopSellers","position":10});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2,"name":"DX Aviar Putt & Approach","brand":"Innova","category":"DX Putterit","price":10.9,"list":"TopSellers","position":9});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1660,"name":"Star Mako3","brand":"Innova","category":"Star Midarit","price":18.9,"list":"TopSellers","position":8});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2264,"name":"Star Shryke","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"TopSellers","position":7});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":3141,"name":"Star Destroyer (Ricky Wysocki Signature Stamp)","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"TopSellers","position":6});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2877,"name":"Ricky Wysocki Champion TeeBird3","brand":"Innova","category":"Champion V\u00e4yl\u00e4draiverit","price":17.9,"list":"TopSellers","position":5});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":326,"name":"Star Wraith","brand":"Innova","category":"Star Pituusdraiverit","price":18.9,"list":"TopSellers","position":4});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2962,"name":"Innova Adventure Pack","brand":"Innova","category":"Frisbeegolfkassit","price":54.9,"list":"TopSellers","position":3});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":1346,"name":"InnovaStore Lahjakortti","brand":"Lahjakortti","category":"Muut tuotteet","price":10,"list":"TopSellers","position":2});
ga('mcfEnhancedEcommerce.ec:addImpression', {"id":2741,"name":"Innova Discover Pack","brand":"Innova","category":"Frisbeegolfkassit","price":29.9,"list":"TopSellers","position":1});ga('mcfEnhancedEcommerce.send', 'event', 'Products', 'View', 'TopSellers', {nonInteraction: true});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1062,
'name': 'Wraith',
'creative': 'wraith_mini_small_border.jpg',
'position': '4'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1129,
'name': 'Innova Discover Bag',
'creative': 'discover_bag_small_copy1.jpg',
'position': '3'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1515,
'name': 'DISCatcher EZ Target',
'creative': 'discatcher_EZ_retina_small_copy1.jpg',
'position': '2'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 977,
'name': 'Shryke',
'creative': 'shryke_mini_small.png',
'position': '1'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1235,
'name': 'Innova Star Lion',
'creative': 'mainhead_lion_fin.jpg',
'position': '6'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1502,
'name': 'Innova Excursion Pack',
'creative': 'Innova_Excursion_Pack_IS_MAIN_FIN.jpg',
'position': '5'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1504,
'name': 'Wysocki Star Destroyer',
'creative': 'wysocki_star_destroyer_main_FIN.jpg',
'position': '4'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 862,
'name': 'Shryke',
'creative': 'mainhead_shrykes_FIN.jpg',
'position': '3'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1416,
'name': 'Super Heropack 2.0',
'creative': 'mainhead_super_heropack_2_stroke.jpg',
'position': '2'
});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1207,
'name': 'Gregg Barsby Star Roadrunner',
'creative': 'Mainhead_Barsby_Star_RR_FIN.jpg',
'position': '1'
});
ga('mcfEnhancedEcommerce.send', 'event', 'Banners', 'View', '', {nonInteraction: true});
ga('mcfEnhancedEcommerce.ec:addPromo', {
'id': 1441,
'name': 'Aloittelijan opas frisbeegolfiin',
'creative': 'aloittelijan_opas_IS_fixed.jpg',
'position': 'campaign-fi/1'
});
ga('mcfEnhancedEcommerce.send', 'event', 'Banners', 'View', 'campaign-fi', {nonInteraction: true});
</script>
<!-- End Google Analytics -->
<script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"Organization","name":"InnovaStore Suomi","logo":"https:\/\/www.innovastore.fi\/files\/innovastore_logo_clean_201x99.png","url":"https:\/\/www.innovastore.fi\/","contactPoint":{"@type":"ContactPoint","contactType":"sales","telephone":"+358 10 2312551","areaServed":["AF","AX","NL","AL","DZ","AS","AD","AO","AI","AQ","AG","AE","AR","AM","AW","AU","AZ","BS","BH","BD","BB","BE","BZ","BJ","BM","BT","BO","BA","BW","BV","BR","IO","VG","BN","BG","BF","BI","KY","CL","CK","CR","CW","DJ","DM","DO","EC","EG","SV","ER","ES","ZA","GS","KR","SS","ET","FK","FJ","PH","FO","GA","GM","GE","GH","GI","GD","GL","GP","GU","GT","GG","GN","GW","GY","HT","HM","HN","HK","SJ","ID","IN","IQ","IR","IE","IS","IL","IT","TL","AT","JM","JP","YE","JE","JO","CX","KH","CM","CA","IC","CV","BQ","KZ","KE","CF","CN","KG","KI","CO","KM","CD","CG","CC","GR","HR","CU","KW","CY","LA","LV","LS","LB","LR","LY","LI","LT","LU","EH","MO","MG","MK","MW","MV","MY","ML","MT","IM","MA","MH","MQ","MR","MU","YT","MX","FM","MD","MC","MN","ME","MS","MZ","MM","NA","NR","NP","NI","NE","NG","NU","NF","NO","CI","OM","PK","PW","PS","PA","PG","PY","PE","PN","KP","MP","PT","PR","PL","GQ","QA","FR","GF","PF","TF","RO","RW","SE","RE","SH","KN","LC","VC","BL","MF","PM","DE","SB","ZM","WS","SM","SA","SN","RS","SC","SL","SG","SX","SK","SI","SO","LK","SD","FI","SR","CH","SZ","SY","ST","TJ","TW","TZ","DK","TH","TG","TK","TO","TT","TN","TR","TM","TC","TV","TD","CZ","UG","UA","HU","UY","NC","NZ","UZ","BY","VU","VA","VE","RU","VN","EE","WF","GB","US","VI","UM","ZW"],"availableLanguage":["Finnish","English","Swedish","Estonian"]}}</script><script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"Website","name":"InnovaStore Suomi","alternateName":"InnovaStore","url":"https:\/\/www.innovastore.fi","potentialAction":{"@type":"SearchAction","target":"https:\/\/www.innovastore.fi\/search\/?q={search_term_string}","query-input":"required name=search_term_string"}}</script><script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https:\/\/www.innovastore.fi","name":"Etusivu"}}]}</script><meta property="og:type" content="article" />
<meta property="og:image" content="https://www.innovastore.fi/tuotekuvat/1500x1500/innovastore_logo_clean_201x99.png" />
<meta property="og:url" content="https://www.innovastore.fi/" />
<meta property="og:title" content="Etusivu" />
<meta property="og:site_name" content="InnovaStore Suomi" />
<script>
window.dataLayer = window.dataLayer || [];
dataLayer.push({"CurrentPageType":"category","CanonicalUrl":"\/","ShopUrl":"https:\/\/www.innovastore.fi","ShopLanguage":"fi","UserId":null,"CustomerEmail":null,"CustomerName":null,"CustomerCompany":null,"CustomerFirstName":null,"CustomerLastName":null,"CustomerPhone":null,"CustomerZip":null,"CustomerCity":null,"CustomerCountry":null});
dataLayer.push({"ecommerce":{"currencyCode":"EUR","promoView":{"promotions":[{"id":1062,"name":"Wraith","creative":"wraith_mini_small_border.jpg","position":"4"},{"id":1129,"name":"Innova Discover Bag","creative":"discover_bag_small_copy1.jpg","position":"3"},{"id":1515,"name":"DISCatcher EZ Target","creative":"discatcher_EZ_retina_small_copy1.jpg","position":"2"},{"id":977,"name":"Shryke","creative":"shryke_mini_small.png","position":"1"},{"id":1235,"name":"Innova Star Lion","creative":"mainhead_lion_fin.jpg","position":"6"},{"id":1502,"name":"Innova Excursion Pack","creative":"Innova_Excursion_Pack_IS_MAIN_FIN.jpg","position":"5"},{"id":1504,"name":"Wysocki Star Destroyer","creative":"wysocki_star_destroyer_main_FIN.jpg","position":"4"},{"id":862,"name":"Shryke","creative":"mainhead_shrykes_FIN.jpg","position":"3"},{"id":1416,"name":"Super Heropack 2.0","creative":"mainhead_super_heropack_2_stroke.jpg","position":"2"},{"id":1207,"name":"Gregg Barsby Star Roadrunner","creative":"Mainhead_Barsby_Star_RR_FIN.jpg","position":"1"},{"id":1441,"name":"Aloittelijan opas frisbeegolfiin","creative":"aloittelijan_opas_IS_fixed.jpg","position":"campaign-fi\/1"}]},"impressions":[{"id":3318,"name":"Innova Tour Towel - Sabattus","price":13.9,"brand":"Innova","category":"Muut tuotteet","list":"NewProducts","position":6},{"id":3319,"name":"Innova Tour Towel - Milo McIver","price":13.9,"brand":"Innova","category":"Muut tuotteet","list":"NewProducts","position":5},{"id":3320,"name":"Innova Tour Towel - Wildhorse","price":13.9,"brand":"Innova","category":"Muut tuotteet","list":"NewProducts","position":4},{"id":3324,"name":"Innova Prime Fusion Performance Tee (Miesten malli)","price":36.9,"brand":"Innova","category":"Tekstiilit","list":"NewProducts","position":3},{"id":3325,"name":"Innova Prime Fusion Performance Tee (Naisten malli)","price":36.9,"brand":"Innova","category":"Tekstiilit","list":"NewProducts","position":2},{"id":3339,"name":"DISCatcher EZ Target","price":199,"brand":"Innova","category":"Maalikorit","list":"NewProducts","position":1},{"id":3142,"name":"Star Destroyer (SockiBot Stamp)","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"HotPicks","position":10},{"id":1386,"name":"Champion Roc3","price":17.9,"brand":"Innova","category":"Champion Midarit","list":"HotPicks","position":9},{"id":275,"name":"R-Pro Pig","price":14.9,"brand":"Innova","category":"Pro, R-Pro ja XT -kiekot","list":"HotPicks","position":8},{"id":3324,"name":"Innova Prime Fusion Performance Tee (Miesten malli)","price":36.9,"brand":"Innova","category":"Tekstiilit","list":"HotPicks","position":7},{"id":2836,"name":"Gregg Barsby Star Roadrunner","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"HotPicks","position":6},{"id":2877,"name":"Ricky Wysocki Champion TeeBird3","price":17.9,"brand":"Innova","category":"Champion V\u00e4yl\u00e4draiverit","list":"HotPicks","position":5},{"id":1831,"name":"Champion Thunderbird","price":17.9,"brand":"Innova","category":"Champion Pituusdraiverit","list":"HotPicks","position":4},{"id":2083,"name":"DX Roc3","price":10.9,"brand":"Innova","category":"DX Midarit","list":"HotPicks","position":3},{"id":3141,"name":"Star Destroyer (Ricky Wysocki Signature Stamp)","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"HotPicks","position":2},{"id":2448,"name":"Innova Die Cut -tarra","price":1,"brand":"Innova","category":"Muut tuotteet","list":"HotPicks","position":1},{"id":1831,"name":"Champion Thunderbird","price":17.9,"brand":"Innova","category":"Champion Pituusdraiverit","list":"TopSellers","position":20},{"id":3,"name":"Barry Schultz Champion Beast","price":17.9,"brand":"Innova","category":"Champion Pituusdraiverit","list":"TopSellers","position":19},{"id":2045,"name":"Champion Leopard3","price":17.9,"brand":"Innova","category":"Champion V\u00e4yl\u00e4draiverit","list":"TopSellers","position":18},{"id":1628,"name":"GStar Mamba","price":18.9,"brand":"Innova","category":"GStar Pituusdraiverit","list":"TopSellers","position":17},{"id":106,"name":"DX Dragon","price":10.9,"brand":"Innova","category":"DX Pituusdraiverit","list":"TopSellers","position":16},{"id":275,"name":"R-Pro Pig","price":14.9,"brand":"Innova","category":"Pro, R-Pro ja XT -kiekot","list":"TopSellers","position":15},{"id":118,"name":"DX Roc","price":10.9,"brand":"Innova","category":"DX Midarit","list":"TopSellers","position":14},{"id":59,"name":"Star Valkyrie","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"TopSellers","position":13},{"id":1487,"name":"Champion Mako3","price":17.9,"brand":"Innova","category":"Champion Midarit","list":"TopSellers","position":12},{"id":1638,"name":"GStar Destroyer","price":18.9,"brand":"Innova","category":"GStar Pituusdraiverit","list":"TopSellers","position":11},{"id":1618,"name":"XT Nova","price":16.9,"brand":"Innova","category":"OverMold -kiekot","list":"TopSellers","position":10},{"id":2,"name":"DX Aviar Putt & Approach","price":10.9,"brand":"Innova","category":"DX Putterit","list":"TopSellers","position":9},{"id":1660,"name":"Star Mako3","price":18.9,"brand":"Innova","category":"Star Midarit","list":"TopSellers","position":8},{"id":2264,"name":"Star Shryke","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"TopSellers","position":7},{"id":3141,"name":"Star Destroyer (Ricky Wysocki Signature Stamp)","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"TopSellers","position":6},{"id":2877,"name":"Ricky Wysocki Champion TeeBird3","price":17.9,"brand":"Innova","category":"Champion V\u00e4yl\u00e4draiverit","list":"TopSellers","position":5},{"id":326,"name":"Star Wraith","price":18.9,"brand":"Innova","category":"Star Pituusdraiverit","list":"TopSellers","position":4},{"id":2962,"name":"Innova Adventure Pack","price":54.9,"brand":"Innova","category":"Frisbeegolfkassit","list":"TopSellers","position":3},{"id":1346,"name":"InnovaStore Lahjakortti","price":10,"brand":"Lahjakortti","category":"Muut tuotteet","list":"TopSellers","position":2},{"id":2741,"name":"Innova Discover Pack","price":29.9,"brand":"Innova","category":"Frisbeegolfkassit","list":"TopSellers","position":1}]}});
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MT5W8P3');</script>
<!-- End Google Tag Manager -->
<meta name="google-site-verification" content="google3ebe28526857af2a.html" />
<!-- Facebook Pixel Code
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '291473204374728');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=291473204374728&ev=PageView&noscript=1"
/></noscript>
End Facebook Pixel Code -->
<script src="https://use.typekit.net/dzc1imp.js"></script>
<script>try {
Typekit.load({async: true});
} catch (e) {
}</script>
<script src="https://kit.fontawesome.com/c752f422f2.js" crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
crossorigin="anonymous"></script>
<script type="text/javascript">
var lang = 'fi-2017-live';
var colorprefer = "Valinta toimii tilaajan toiveena keräyksessä. Täytämme toiveet mahdollisuuksien ja saatavilla olevan valikoiman mukaan.";
var phonereminder = "Muista antaa puhelinnumero, jotta saamme sinuun yhteyden jos tilauksessa on jotain kysyttävää.";
var klarnainfo = "Muodossa PPKKVV-XXXX";
var choose = "Valitse";
</script>
<script type="text/javascript">
window.MCF = window.MCF || {};
window.MCF.locale = 'fi';
window.MCF.Lang = {
Variation: 'Malli',
DiscManiaMessage: 'Discmanian tuotteet ovat siirtyneet <a href="https://europe.discmania.net" target=_blank>Discmania Store Europeen</a>. Voit lukea lisää muutoksesta <a href="https://bit.ly/InnovaStore_DMStore_FIN">täältä!</a>'
};
window.Innova = window.Innova || {};
window.Innova.versionId = '2';
window.Innova.locale = 'fi';
window.Innova.lang = 'fi';
window.Innova.BestsellerIds = "2741|1346|2962|326|2877|3141|2264|1660|2|1618|1638|1487|59|118|275|106|1628|2045|3|1831|";
window.Innova.ProductModelCategories = "428|425|433|430|426|422|423|424|429|431|432|436|435|437|438|427|518|537|546|250|231|230|251|229|557|502|519|533|237|236|235|234|233|232|552|520|521|524|240|239|238|522|527|539|549|247|246|245|298|249|439|248|244|242|211|241|486|509|538|388|387|386|382|379|370|369|357|350|345|256|203|339|420|413|412|400|396|515|488|498|393|392|391|390|385|384|377|375|374|372|366|499|365|355|354|353|352|349|348|342|417|416|415|408|407|399|397|395|525|209|208|367|361|360|347|343|340|414|409|205|406|401|550|493|504|512|218|389|383|381|380|378|376|373|371|368|364|363|362|359|358|356|210|346|217|344|341|338|419|418|411|410|405|404|254|403|402|398|394|";
window.Innova.CampaignIds = "";
</script>
<script type="text/javascript" src="/minify/?t=custom/fi-2017-live&f=vendor/jquery/jquery-migrate-1.4.1.min.js,vendor/underscore/underscore.min.js,vendor/jquery-match-height/jquery.matchHeight.js,vendor/bootstrap/bootstrap.min.js,vendor/hc-sticky/jquery.hc-sticky.js,vendor/magnific-popup/dist/jquery.magnific-popup.js,vendor/cookieconsent/cookieconsent.min.js,js/plugins/checkout.js,js/plugins/modals.js,js/plugins/notifications.js,js/plugins/loaders.js,js/plugins/siema.min.js,js/plugins/theme.js,js/mcf.variationsplitter.custom.js,js/locales.js,js/brands.js,js/cart.js,js/productembed.js,js/videoembed.js,js/productlists.js,js/flightnumbers.js,js/flightsearch.js,js/productfilters.js,js/common.2017.js,js/add_to_cart.js,js/discmania.js"></script> <script type="text/javascript">
//<![CDATA[
(function (window) {
window.MCFSupportScripts = {
_queue: [],
queue: function (supportFn) {
this._queue.push(supportFn);
},
raiseInfo: function (message) {
if (console && console.info) {
console.info(message);
}
},
raiseWarning: function (message) {
if (console && console.warn) {
console.warn(message);
}
},
raiseError: function (message) {
if (console && console.error) {
console.error(message);
}
},
raiseGrouped: function (label, logCallback) {
if (!console) {
return;
}
if (console.groupCollapsed) {
console.groupCollapsed(label);
} else {
console.log(label);
}
logCallback();
if (console.groupEnd) {
console.groupEnd();
}
},
withTimeout: function (callback, timeout) {
var fixedTimeout = timeout || 1000;
var timeout = setTimeout(function () {
wrappedFn();
}, fixedTimeout);
var wrappedFn = function () {
clearTimeout(timeout);
callback();
};
return wrappedFn;
},
withOneCall: function (callback) {
var called = false;
return function () {
if (!called) {
called = true;
callback();
}
};
}
};
function onLoad() {
if (!window.jQuery) {
var script = document.createElement('script');
script.src = '//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js';
script.async = false;
script.onload = function () {
runSupportScripts();
};
script.onreadystatechange = function () {
if (this.readyState == 'complete' || this.readyState == 'loaded') {
runSupportScripts();
}
};
document.getElementsByTagName('head')[0].appendChild(script);
} else {
runSupportScripts();
}
}
function runSupportScripts() {
var supportFn;
while (supportFn = MCFSupportScripts._queue.shift()) {
supportFn();
}
}
if (window.addEventListener) {
window.addEventListener('load', onLoad);
} else if (window.attachEvent) {
window.attachEvent('onload', onLoad);
}
})(window);
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
MCFSupportScripts.queue(function () {
var LOG_PREFIX = 'MyCashflow Google Analytics:';
var LINK_ATTRIBUTE = 'data-mcf-link';
var LINK_SELECTOR = '[' + LINK_ATTRIBUTE + ']';
var DEFAULT_HANDLER_MAP = {
add_to_cart: trackAddToCart,
remove_from_cart: trackRemoveFromCart,
click_banner: trackBannerClick,
click_product: trackProductClick
};
function isAnalyticsEnabled() {
return typeof ga !== 'undefined';
}
function isTagManagerEnabled() {
return typeof dataLayer !== 'undefined';
}
function raiseInfo(message) {
MCFSupportScripts.raiseInfo(LOG_PREFIX + ' ' + message);
}
function raiseWarning(message) {
MCFSupportScripts.raiseWarning(LOG_PREFIX + ' ' + message);
}
function raiseError(message) {
MCFSupportScripts.raiseError(LOG_PREFIX + ' ' + message);
}
function raiseGrouped(label, logCallback) {
MCFSupportScripts.raiseGrouped(LOG_PREFIX + ' ' + label, logCallback);
}
function asHitCallback(callback) {
if (typeof callback !== 'function') {
return;
}
var callCounter = 0;
var called = false;
if (isAnalyticsEnabled()) {
callCounter++;
}
if (isTagManagerEnabled()) {
callCounter++;
}
var timeout = setTimeout(function () {
called = true;
callback();
}, 1500);
var wrappedFn = function () {
callCounter--;
if (callCounter === 0 && !called) {
clearTimeout(timeout);
callback();
}
};
return wrappedFn;
}
function highlightElements() {
var attribute = 'data-mcf-debug-analytics';
var selector = LINK_SELECTOR + ':not([' + attribute + ']';
var css = { outline: '1px dashed rgba(255, 0, 0, 0.8)' };
$(selector).css(css).attr(attribute, true);
}
function getElementType(element) {
if (element.href) {
return 'link';
} else if (element.action) {
return 'form';
} else {
return 'element';
}
}
function getElementDestination(element) {
return element.href || element.action;
}
function getElementStr(element) {
var elementType = getElementType(element);
var elementDest = getElementDestination(element);
return elementType + (elementDest ? ' [' + elementDest + ']' : '');
}
function runDefaultHitCallbackFor(element) {
if (element.href) {
document.location = element.href;
} else if (element.action) {
element.submit();
}
}
function parseAttributes(element) {
try {
var attributes = JSON.parse(element.getAttribute(LINK_ATTRIBUTE));
if (!attributes.type) {
raiseWarning('Missing "type" for ' + elementStr);
return;
}
if (!attributes.event) {
raiseWarning('Missing "event" for ' + elementStr);
return;
}
if (!attributes.meta) {
raiseWarning('Missing "meta" for ' + elementStr);
return;
}
return attributes;
} catch (ex) {
raiseError('Could not parse tracking attributes for ' + getElementStr(element));
throw ex;
}
}
function initialize(debug) {
if (debug) {
highlightElements();
setInterval(function () {
highlightElements();
}, 2000);
}
$(document).on('click submit', LINK_SELECTOR, function (evt) {
var element = evt.currentTarget;
if (element.action && evt.type === 'click') {
return;
}
var wasPrevented = evt.isDefaultPrevented();
var elementStr = getElementStr(element);
var attributes = parseAttributes(element);
var handler = DEFAULT_HANDLER_MAP[attributes.type];
if (!handler) {
return;
}
if (debug) {
raiseGrouped('Tracking "' + attributes.type + '" for ' + elementStr, function () {
console.log(JSON.stringify(attributes, null, 2));
});
}
if (!wasPrevented) {
evt.preventDefault();
}
handler(attributes.meta, function () {
if (wasPrevented) {
if (debug) {
raiseInfo('Skipping "' + attributes.type + '" hitCallback for ' + elementStr);
}
return;
}
runDefaultHitCallbackFor(element);
});
});
}
function trackBannerClick(meta, hitCallback) {
var wrappedHitCallback = asHitCallback(hitCallback);
if (isAnalyticsEnabled()) {
ga('mcfEnhancedEcommerce.ec:addPromo', meta);
ga('mcfEnhancedEcommerce.ec:setAction', 'promo_click');
ga('mcfEnhancedEcommerce.send', 'event', 'Banners', 'click', meta.name, { hitCallback: wrappedHitCallback });
}
if (isTagManagerEnabled()) {
dataLayer.push({
event: 'promoClick',
ecommerce: { click: { promotions: [meta] } },
eventCallback: wrappedHitCallback
});
}
}
function trackProductClick(meta, hitCallback) {
var wrappedHitCallback = asHitCallback(hitCallback);
if (isAnalyticsEnabled()) {
ga('mcfEnhancedEcommerce.ec:addProduct', meta);
ga('mcfEnhancedEcommerce.ec:setAction', 'click', { list: meta.list });
ga('mcfEnhancedEcommerce.send', 'event', 'Products', 'click', meta.name, { hitCallback: wrappedHitCallback });
}
if (isTagManagerEnabled()) {
dataLayer.push({
event: 'productClick',
ecommerce: { click: { actionField: { list: meta.list }, products: [meta] } },
eventCallback: wrappedHitCallback
});
}
}
function trackAddToCart(meta, hitCallback) {
var wrappedHitCallback = asHitCallback(hitCallback);
if (isAnalyticsEnabled()) {
ga('mcfEnhancedEcommerce.ec:addProduct', meta);
ga('mcfEnhancedEcommerce.ec:setAction', 'add', { list: meta.list });
ga('mcfEnhancedEcommerce.send', 'event', 'Products', 'add', 'Add to cart', { hitCallback: wrappedHitCallback });
}
if (isTagManagerEnabled()) {
dataLayer.push({
event: 'addToCart',
ecommerce: { add: { actionField: { list: meta.list }, products: [meta] } },
eventCallback: wrappedHitCallback
});
}
}
function trackRemoveFromCart(meta, hitCallback) {
var wrappedHitCallback = asHitCallback(hitCallback);
if (isAnalyticsEnabled()) {
ga('mcfEnhancedEcommerce.ec:addProduct', meta);
ga('mcfEnhancedEcommerce.ec:setAction', 'remove');
ga('mcfEnhancedEcommerce.send', 'event', 'Products', 'remove', 'Remove from cart', { hitCallback: wrappedHitCallback });
}
if (isTagManagerEnabled()) {
dataLayer.push({
event: 'removeFromCart',
ecommerce: { remove: { products: [meta] } },
eventCallback: wrappedHitCallback
});
}
}
window.MCFGoogleAnalytics = {
initialize: initialize,
parseAttributes: parseAttributes,
trackBannerClick: trackBannerClick,
trackProductClick: trackProductClick,
trackAddToCart: trackAddToCart,
trackRemoveFromCart: trackRemoveFromCart
};
$(document).ready(function () {
var debug = window.location.href.match(/debug_analytics=(true|false|1|0)/);
var debugKey = '_mcf_debug_analytics';
var debugVal = debug && !!debug[1].match(/(true|1)/);
if (window.sessionStorage) {
if (debugVal === null) {
debugVal = window.sessionStorage.getItem(debugKey);
debugVal = debugVal === 'true';
} else {
window.sessionStorage.setItem(debugKey, debugVal);
}
}
window.MCFGoogleAnalytics.initialize(debugVal);
});
});
//]]>
</script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "rgba(0, 0, 0, 0.85)"
},
},
"content": {
"message": "Käytämme evästeitä sivustollamme. Evästeet ovat selaimeesi tallennettuja tiedostoja ja niitä käytetään verkkosivustolla vierailusi käyttökokemuksen parantamiseen. Jatkamalla sivuston käyttöä hyväksyt evästeiden käytön.",
"dismiss": "Sulje",
"link": "Lue lisää",
"href": "/page/6"
}
})});
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion_async.js" charset="utf-8"></script>
<script type="text/javascript">
window.addEventListener('load',function(){
var dynx_itemid = '';
var dynx_pagetype = '';
var dynx_totalvalue = 0;
var pathnameVal=window.location.pathname;
var hrefVal=window.location.href;
if(hrefVal.indexOf('/product') !=-1)
{
dynx_itemid = jQuery('#product-data').attr('data-product-id');
dynx_pagetype = 'offerdetail';
dynx_totalvalue = parseFloat(jQuery('.price-info h2').text().replace(',','.').replace(/[^0-9.]/g,''));
}else if(hrefVal.indexOf('/cart') != -1)
{
dynx_pagetype = 'conversionintent';
if (typeof cart_ids !== 'undefined') {
dynx_itemid = cart_ids;
}
}else if(hrefVal.indexOf('/search') != -1)
{
dynx_pagetype = 'searchresults';
}
else if(hrefVal.indexOf('/checkout/thanks/') != -1)
{
dynx_pagetype = 'conversion';
}else
{
dynx_pagetype = 'other';
}
var google_tag_params = {
dynx_itemid : dynx_itemid,
dynx_pagetype : dynx_pagetype,
dynx_totalvalue : dynx_totalvalue
}
window.google_trackConversion({
google_conversion_id: 949808071,
google_custom_params: {
'dynx_itemid': google_tag_params.dynx_itemid,
'dynx_pagetype': google_tag_params.dynx_pagetype,
'dynx_totalvalue':google_tag_params.dynx_totalvalue
},
google_remarketing_only: true
});
});
</script>
<!-- Google Code for Remarketing Tag -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 949808071;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/949808071/?guid=ON&script=0"/>
</div>
</noscript>
<meta name="google-site-verification" content="IctQ5cJtAYvGM1k-TIh886c0dAVJz6LGc4klpkRG-1s" />
<style type="text/css">
@media screen and (min-width: 750px) {
body {
background-image: url('/tuotekuvat/1920x/InnovaStore_BG_heinakuu17_1920x1200_copy2.jpg');
}
}
/* fi */
</style>
</head>
<body class="Version-2 SinglePageCheckout CategoryID-60 lang-fi infobanner-mobile-active infobanner-desktop-active">
<div id="fb-root"></div>
<script type="text/javascript">
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/fi_FI/sdk.js#xfbml=1&version=v2.8";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=&ev=PageView&noscript=1"
/></noscript>
<div class="row" style="margin-left: 0; margin-right: 0;">
<div id="topbar" class="top-bar">
<div class="infobanner mobile"><div style="background-color:#fff; padding: 7px 15px;">
<p>Tsekkaa top 20 myydyimmät tuotteemme <a href="http://bit.ly/InnovaStore_Top20">tästä!</a>
</p></div></div>
<div class="infobanner desktop"><div style="background-color:#fff; padding: 7px 15px;">
<p>Tsekkaa top 20 myydyimmät tuotteemme <a href="http://bit.ly/InnovaStore_Top20">tästä!</a>
</p></div></div>
</div>
</div>
<div id="header" class="header header-desktop hidden-xs hidden-ms hidden-sm container">
<div id="lang" class="location-chooser">
<img src="/files/fi-2017-live/img/lang_choose_country.png" alt="Valitse maa"/>
<a class="fi" href="https://www.innovastore.fi">FIN</a> |
<a class="eu" href="https://www.innovastore.net">ENG</a>
<!--<a href="https://www.innovastore.fi"><img src="/files/{Theme}/img/lang_fi.jpg" alt="Fin"/></a>
<a href="https://www.innovastore.net"><img src="/files/{Theme}/img/lang_sv.jpg" alt="Swe"/></a>-->
</div>
<div id="login" class="header-actions">
<ul class="first">
<li class="login-icon">
<img src="/files/rakennekuvat/template-2017/icon-key.png" alt="">
</li>
<li><a class="block" href="/account/">Kirjaudu sisään</a>
<ul class="dropdown_login">
<li>
<div class="login_hover">
<form method="post" action="/account/login/">
<input type="hidden" name="on_success" value="/"/>
<input type="hidden" name="on_error" value="/account/login/"/>
<div class="row">
<div class="col-xs-12 col-ms-6">
<label class="light tight">Sähköposti</label>
<input type="text" name="login[email]" class="block block-input inputfield"/>
</div>
<div class="col-xs-12 col-ms-6">
<label class="light tight">Salasana</label>
<input type="password" name="login[password]" class="block block-input inputfield"/>
<!--
<input type="checkbox" name="remember" /> Remember me
-->
</div>
<div class="col-xs-12 col-ms-6 col-ms-push-6 Text-Right">
<button type="submit" class="Button Button-Block">Kirjaudu sisään</button>
</div>
<div class="col-xs-12">
<p class="Text-Right"><a href="/account/password/">Unohditko salasanasi?</a></p>
</div>
</div>
</form>
</div>
</li>
</ul>
</li>
<li>|</li>
<li>
<a href="/register/">Luo tili</a>
</li>
</ul>
<ul class="search">
<li>
<form action="/search/" method="get" id="SearchForm" class="search-form">
<input type="text" name="q" id="SearchInput" class="search-input" value=""/>
<input id="SearchButton" type="image" class="search-button"
src="/files/fi-2017-live/img/icon_search.jpg"/>
<!--<button type="submit" id="SearchButton"><span>Haku</span> </button>-->
</form>
</li>
</ul>
<ul class="cart cart-mini">
<li>
<a class="orange block" href="/cart/">
<span class="cart-text">Ostoskori</span>
<img class="cart-icon" src="/files/rakennekuvat/template-2017/icon-cart.png" alt="Ostoskori">
<span class="badge cart-badge">0</span>
</a>
<ul class="dropdown dropdown-cart">
<li>
<div class="cart_hover">
<a class="close-cart">×</a>
<h2>Ostoskorisi</h2>
<p>0 tuotetta Yhteensä<br>
<strong>0,00 €</strong></p>
<div class="row">
<div class="col-xs-6 col-ms-6">
<a class="Button Button-Primary Button-Block Text-Center"
href="/cart/">näytä ostoskori</a>
</div>
<div class="col-xs-6 col-ms-6">
<a class="Button Button-Secondary Button-Block Text-Center" href="/checkout/">Siirry kassalle</a>
</div>
</div>
</div>
</li>
</ul>
</li>
</ul>
</div>
<h2 class="site_title"><em>“Aina nopea toimitus Tampereen varastolta - Jo yli 150 000 toimitettua tilausta!”</em></h2>
<div class="fb">
<div class="fb-like" data-href="https://facebook.com/InnovaStore.net" data-send="false"
data-layout="button_count" data-show-faces="false"></div>
</div>
</div>
<div class="navigation-desktop hidden-xs hidden-ms hidden-sm">
<div class="navi_bg">
<div class="navi">
<h1><a href="/"><img src="/files/fi-2017-live/img/header_logo.png" alt="Innovastore"/></a></h1>
<!--<a href="/category/144/tarjoukset" class="sale"><span><strong>Sale</strong></span></a>-->
<a href="/category/144/tarjoukset"><img class="sale-old" src="/files/fi-2017-live/img/navi_sale.png" alt="Tarjoukset" /></a>
<ul class="main-menu" id="main-menu">
<li class="hidden-md hidden-lg">
<a href="/category/152/uutuudet">Uutuudet <span style="color: #c61e1e;"><em class="fas fa-certificate"></em></span></a>
</li>
<li class="has-dropdown"><a href="#">Kiekot</a>
<ul class="dropdown">
<li>
<div>
<div class="section">
<h3>Innova</h3>
<ul>
<li><a href="/category/300/?type=303">Putterit</a></li>
<li><a href="/category/300/?type=304">Midarit</a></li>
<li><a href="/category/300/?type=305">Väylädraiverit</a></li>
<li><a href="/category/300/?type=306">Pituusdraiverit</a></li>
</ul>
<ul class="tight">
<li><a href="/category/300/"><em>Näytä kaikki</em></a></li>
</ul>
</div>
<div class="section">
<h3>Discmania</h3>
<ul>
<li><a href="/category/299/?type=303">Putterit</a></li>
<li><a href="/category/299/?type=304">Midarit</a></li>
<li><a href="/category/299/?type=305">Väylädraiverit</a></li>
<li><a href="/category/299/?type=306">Pituusdraiverit</a></li>
</ul>
<ul class="tight">
<li><a href="/category/299/"><em>Näytä kaikki</em></a></li>
</ul>
</div>
<div class="section">
<h3>InnovaStore Specials</h3>
<ul>
<li><a href="/category/156/factory-store">Factory Store</a></li>
<li><a href="/category/159/oop-limited">OOP / Limited Production</a></li>
<li><a href="/category/160/fundraiserit">Fundraiser -kiekot</a></li>
<li><a href="/category/162/first-run-prototype">First Run & Prototype</a></li>
<li><a href="/category/174/tour-series-signature">Tour Series & Signature</a></li>
</ul>
<ul class="tight">
<li><a href="/category/151/innovastore-specials"><em>Näytä kaikki</em></a></li>
</ul>
</div>
</div>
<div>
<div class="section">
<h3>Huk Lab</h3>
<ul>
<li><a href="/category/443/huk-lab-dyed">Huk Dyed</a></li>
<li><a href="/category/440/huk-lab-mini-stamp">Huk Mini Stamp</a></li>
<li><a href="/category/442/huk-lab-hypno-stamp">Huk Hypno</a></li>
<li><a href="/category/441/huk-lab-timber-stamp">Huk Timber</a></li>
</ul>
<ul class="tight">
<li><a href="/category/166/huk-lab-discs"><em>Näytä kaikki</em></a></li>
</ul>
</div>
<div class="section">
<h3>Millennium</h3>
<ul>
<li><a href="/category/421/?type=303">Putterit</a></li>
<li><a href="/category/421/?type=304">Midarit</a></li>
<li><a href="/category/421/?type=305">Väylädraiverit</a></li>
<li><a href="/category/421/?type=306">Pituusdraiverit</a></li>
</ul>
<ul class="tight">
<li><a href="/category/421/"><em>Näytä kaikki</em></a></li>
</ul>
</div>
<div class="section">
<h3>Muut kiekot</h3>
<ul>
<li><a href="/category/153/kiekkosetit">Kiekkosetit</a></li>
<li><a href="/category/179/merkkauskiekot">Merkkauskiekot</a></li>
<li><a href="/category/180/ultimate-ja-kopittelukiekot">Ultimate & kopittelukiekot</a></li>
<li><a href="/category/135/koirakiekot">Koirakiekot</a></li>
<li><a href="/category/118/muut-kiekot"><em>Näytä kaikki</em></a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<li><a href="/category/121/frisbeegolfkassit">Kassit</a></li>
<li><a href="/category/122/maalikorit">Korit</a></li>
<li class="has-dropdown"><a href="/category/124/tekstiilit">Tekstiilit</a>
<ul class="dropdown">
<li>
<div>
<div class="section open-default">
<h3>Tekstiilit</h3>
<ul>
<li><a href="/category/185/paahineet">Päähineet</a></li>
<li><a href="/category/445/paidat">Paidat</a></li>
<li><a href="/category/444/housut">Housut & shortsit</a></li>
<li><a href="/category/187/hupparit-ja-takit">Hupparit & takit</a></li>
<li><a href="/category/446/muut-tekstiilit">Muut</a></li>
</ul>
<ul class="tight">
<li><a href="/category/124/tekstiilit"><em>Näytä kaikki</em></a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<li><a href="/category/449/myydyimmat-top-20">Myydyimmät</a></li>
<li class="has-dropdown"><a href="#">Kokoelmat</a>
<ul class="dropdown">
<li>
<div>
<div class="section open-default">
<h3>Kokoelmat</h3>
<ul>
<li><a href="/category/154/aloittelijoille">Aloittelijoille</a></li>
<li><a href="/category/131/muut-tuotteet">Muut tuotteet</a></li>
<li><a href="/category/257/mystery-box">Mystery Boxit</a></li>
<li><a href="/category/448/henkilokunnan-valinnat">Henkilökunnan valinnat</a></li>
<li><a href="/category/529/ricky-wysocki">Ricky Wysocki Signature</a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<li class="hidden-md hidden-lg">
<a href="/category/144/tarjoukset">Tarjoukset <span style="color: #000;"><em class="fas fa-tag"></em></span></a>
</li>
<li class="hidden-md hidden-lg has-dropdown"><a href="#">Asiakkaille</a>
<ul class="dropdown">
<li>