-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1098 lines (634 loc) · 29 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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" slick-uniqueid="3"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--<script type="text/javascript" src="http://beautytesters.co.uk/menu127.js"></script>-->
<script src="http://beautytesters.co.uk/cb=gapi.loaded_0" async=""></script>
<script type="text/javascript" src="http://beautytesters.co.uk/shares.json"></script>
<!--<script type="text/javascript" src="http://beautytesters.co.uk/counter003.js"></script>-->
<link rel="stylesheet" type="text/css" href="http://beautytesters.co.uk/counter003.css" media="all">
<!--<script type="text/javascript" async="true" src="http://beautytesters.co.uk/plusone.js" gapi_processed="true"></script>-->
<link rel="stylesheet" type="text/css" href="http://beautytesters.co.uk/widget095.css" media="all">
<html lang="en">
<head>
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
<SCRIPT LANGUAGE="JavaScript1.1">
</script>
<meta charset="utf-8">
<title>Free Product Testing (Question 1 of 6)</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Feeling Beautiful: Skin Care application">
<script src="js/pageJavascript.js"></script>
<script src="js/load.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="js/vendors/jplayer/jquery.jplayer.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.PeriodicalUpdater({
url : 'ticker.php?id=4066492',
minTimeout: 5500,
maxTimeout : 6000,
multiplier : 0
});
})
</script>
<script language="JavaScript" src="http://j.maxmind.com/app/geoip.js"></script>
<link rel="stylesheet" href="include/css/rotate.css">
<link href="include/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="include/css/jquery-ui.css" rel="stylesheet" type="text/css">
<link href="include/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="include/css/dev.min.css" rel="stylesheet">
<script type="text/javascript" language="JavaScript"><!--
// Code added by Bhupinder
// Execute when DOM Ready
$(function(){
// Hide all error alert Divs
$('form').parent().append($(".erroralert"));
//Click event handler for Next to Step (N)
$('.cta-submit').not('.final').click(function(){
// validate the current form
return jsValidate($(this));
});
});
// end code added by Bhupinder
function HideAllShowOne(d) {
// Between the quotation marks, list the id values of each div.
//var IDvaluesOfEachDiv = "idone idtwo idthree idfour";
var IDvaluesOfEachDiv = "idone idtwo idthree idfour idfive idsix";
//-------------------------------------------------------------
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/[,\s"']/g," ");
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/^\s*/,"");
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/\s*$/,"");
IDvaluesOfEachDiv = IDvaluesOfEachDiv.replace(/ +/g," ");
var IDlist = IDvaluesOfEachDiv.split(" ");
for(var i=0; i<IDlist.length; i++) {
HideContent(IDlist[i]);
}
ShowContent(d);
}
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") {
document.getElementById(d).style.display = "block";
} else {
document.getElementById(d).style.display = "none";
}
}
//--></script>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<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-56256087-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Google Code for Remarketing Tag -->
<!--------------------------------------------------
Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. See more information and instructions on how to setup the tag on: http://google.com/ads/remarketingsetup
--------------------------------------------------->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1062009215;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script>
<script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1062009215/?value=0&guid=ON&script=0"/>
</div>
</noscript>
</head>
<body id="application" >
<div class="modal-backdrop fade in"></div>
<div class="modal hide fade in modal-popup" tabindex="-1" role="dialog" style="display: block;">
<div class="modal-header">
<button type="button" class="close popup-close-btn" data-dismiss="modal" aria-hidden="true">x</button>
<h4 class="title-font">Congratulations!</h4>
</div>
<div class="modal-body">
<img src="include/img/all_prod.gif" alt=""/>
<div class="popup-message">
<p>Dear Website Visitor,</p>
<p>congratulations. you have been randomly selected to test new products for free.</p>
<p>Please complete this 30 second questionnaire so we can see which products are right for you.</p>
</div>
<button class="cta cta-submit corners popup-close-btn">OK</button>
</div>
</div>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<div class="reservation-timer">
<span class="envoke-popdown"
data-original-title="Position Temporarily Reserved"
data-content="Due to demand, your position has been temporarily reserved for the next 15 minutes only. If you fail to complete your application within this time we cannot guarantee how many prouducts will remain."
>Your place has been temporarily reserved. Time remaining: <span id="nav-timeremaining" class="label label-important"></span>
</span>
</div>
<div class="places-available">
<span class="envoke-popdown"
data-original-title="Limited Availability!"
data-content="We have a limited number products to test - hurry now before they are all taken!">
<img class="places-flag" src="include/img/US.gif" />
Products remaining in United Kingdom:
<span id="nav-placesremaining" class="label label-important">12</span>
</span>
</div>
</div>
</div>
</div>
<div id="content-wrapper">
<div class="container content corners">
<div class="row heading">
<div class="span12">
<style>.container.content .row.heading h1 { margin: 40px 0px 0px 0px; }
.span12 img{ float: left; margin-top: 46px; }
</style>
<div class="instructionContainer">
<p class="instructionUpper">WANTED: Product Testers</p>
<p class="instructionLower">Answer 6 questions and claim your FREE product.</p>
<p class="instructionLowest">Yes thats right, your chosen product will be truly FREE and yours to keep! All we require is a questionnaire about the product to be completed via email at a later date.</p>
<p class="instructionLowest">Please answer the questions below so we can find the best product match for you.</p>
</div><!--instructionContainer-->
</div>
</div>
<div class="row sell">
<div class="span4" id="productLeft">
<img id="hero-shot" src="include/img/all_prod.gif" />
<br />
<ul class="features">
<li>Companies want you to try their products.</li>
<li>All products are free to try.</li>
<li>Risk free - all products are safe.</li>
<li>Some products include a small postage charge.</li>
<li>Please only choose one product per person as supplies are limited.</li>
<li>If you have any queries, please do not hesitate to contact us at [email protected]</li>
</ul>
</div>
<!-- HIDE BOX START -->
<div class="span7" id="idone">
<div id="quiz-wrapper" class="corners mod-box">
<form id="quiz-form" class="quiz">
<h3 class="title-font question-title">Question 1 of 6:</h3>
<div class="quizQuestion">
<label class="quizLabel">Select your gender:</label>
<div class="quizInput">
<label class="radio"><input TYPE="radio" NAME="gender" VALUE="male">Male</label>
<label class="radio"><input TYPE="radio" NAME="gender" VALUE="female" >Female</label>
<input TYPE="hidden" NAME="hidden" VALUE="hidden">
</div>
</div>
<div class="buttons">
<a id="question-submit2" class="cta cta-submit corners" href="javascript:HideAllShowOne('idtwo')">
<span>Question 2 »</span>
</a>
</div>
</form>
</div>
<div class="corners mod-box further-info">
<h4 class="title-font">Why is knowing your gender important?</h4>
<p>Asking your gender is important because there are great differences between men and womens consumer habits. Several studies have found
that men have a higher change of rejecting a product without properly testing it. This means we have to be careful in which products we give
out to each sex.</p>
</div>
</div>
<!-- HIDE BOX END -->
<!-- HIDE BOX START -->
<div class="span7" id="idtwo" style="display:none;">
<div id="quiz-wrapper" class="corners mod-box">
<form id="quiz-form" class="quiz">
<h3 class="title-font question-title">Question 2 of 6:</h3>
<div class="quizQuestion">
<label class="quizLabel">How old are you?</label>
<div class="quizInput">
<label class="radio"><input TYPE="radio" NAME="age" VALUE="under20">20 and under</label>
<label class="radio"><input TYPE="radio" NAME="age" VALUE="21-30" >21 to 30</label>
<label class="radio"><input TYPE="radio" NAME="age" VALUE="31-40" >31 to 40</label>
<label class="radio"><input TYPE="radio" NAME="age" VALUE="41-50" >41 to 50</label>
<label class="radio"><input TYPE="radio" NAME="age" VALUE="+51" >51 and above</label>
<input TYPE="hidden" NAME="hidden" VALUE="hidden">
</div>
</div>
<div class="buttons">
<a id="question-submit2" class="cta cta-submit corners" href="javascript:HideAllShowOne('idthree')">
<span>Question 3 »</span>
</a>
</div>
</form>
</div>
<div class="corners mod-box further-info">
<h4 class="title-font">Why is your age important?</h4>
<p>With age, we have found great variety in testing results. Age is a key part of product testing with several studies showing different ages have very different consumer habits. This means we have to be careful in which products we give
out to people with different ages.</p>
</div></div>
<!-- HIDE BOX END -->
<!-- HIDE BOX START -->
<div class="span7" id="idthree" style="display:none;">
<div id="quiz-wrapper" class="corners mod-box">
<form id="quiz-form" class="quiz">
<h3 class="title-font question-title">Question 3 of 6:</h3>
<div class="quizQuestion">
<label class="quizLabel">Have you tested any products in the past?</label>
<div class="quizInput">
<label class="radio"><input TYPE="radio" NAME="skin_concern" VALUE="Wrinkles">Yes, more than once</label>
<label class="radio"><input TYPE="radio" NAME="skin_concern" VALUE="Dryness" >Yes, once</label>
<label class="radio"><input TYPE="radio" NAME="skin_concern" VALUE="Stretch-Marks" >No</label>
<label class="radio"><input TYPE="radio" NAME="skin_concern" VALUE="Lighten Skin" >Not sure</label>
<input TYPE="hidden" NAME="hidden" VALUE="hidden">
</div>
</div>
<div class="buttons">
<a id="question-submit2" class="cta cta-submit corners" href="javascript:HideAllShowOne('idfour')">
<span>Question 4 »</span>
</a>
</div>
</form>
</div>
</div>
<!-- HIDE BOX END -->
<!-- HIDE BOX START -->
<div class="span7" id="idfour" style="display:none;">
<div id="quiz-wrapper" class="corners mod-box">
<form id="quiz-form" class="quiz">
<h3 class="title-font question-title">Question 4 of 6:</h3>
<div class="quizQuestion">
<label class="quizLabel">Would you be willing to spend 5 minutes filling in an online questionnaire after you receive your free product?</label>
<div class="quizInput">
<label class="radio"><input TYPE="radio" NAME="target" VALUE="Eyes">Yes</label>
<label class="radio"><input TYPE="radio" NAME="target" VALUE="Cheeks" >No</label>
<label class="radio"><input TYPE="radio" NAME="target" VALUE="Forehead" >Not sure</label>
<input TYPE="hidden" NAME="hidden" VALUE="hidden">
</div>
</div>
<div class="buttons">
<a id="question-submit2" class="cta cta-submit corners" href="javascript:HideAllShowOne('idfive')">
<span>Question 5 »</span>
</a>
</div>
</form>
</div>
</div>
<!-- HIDE BOX END -->
<!-- HIDE BOX START -->
<div class="span7" id="idfive" style="display:none;">
<div id="quiz-wrapper" class="corners mod-box">
<form id="quiz-form" class="quiz">
<h3 class="title-font question-title">Question 5 of 6:</h3>
<div class="quizQuestion">
<label class="quizLabel">Do you have a broadband internet connection</label>
<div class="quizInput">
<label class="radio"><input TYPE="radio" NAME="skin_type" VALUE="Sensitive">Yes</label>
<label class="radio"><input TYPE="radio" NAME="skin_type" VALUE="Dry" >No</label>
<input TYPE="hidden" NAME="hidden" VALUE="hidden">
</div>
</div>
<div class="buttons">
<a id="question-submit2" class="cta cta-submit corners" href="javascript:HideAllShowOne('idsix')">
<span>Question 6 »</span>
</a>
<!--
<button id="question-submit2" class="cta cta-submit corners" type="submit">
<span>Question 6 »</span></button>
-->
</div>
</form>
</div>
</div>
<!-- HIDE BOX END -->
<!-- HIDE BOX START -->
<div class="span7" id="idsix" style="display:none;">
<div id="quiz-wrapper" class="corners mod-box">
<!--<b>Notice</b>: Undefined index: sub in <b>/www/beautytesters.co.uk/index.php</b> on line <b>538</b><br />-->
<form id="quiz-form-final" class="quiz" method="post" action="result.php">
<input type="hidden" name="c1" value="livingsocial.com">
<input type="hidden" name="c2" value="58562802808">
<input type="hidden" name="c3" value="">
<h3 class="title-font question-title">Question 6 of 6:</h3>
<div class="quizQuestion">
<label class="quizLabel">Do you Smoke?</label>
<div class="quizInput">
<label class="radio"><input TYPE="radio" NAME="smoke" VALUE="yes">Yes</label>
<label class="radio"><input TYPE="radio" NAME="smoke" VALUE="no" >No</label>
<label class="radio"><input TYPE="radio" NAME="smoke" VALUE="occasionally" >Occasionally/Socially</label>
<label class="radio"><input TYPE="radio" NAME="smoke" VALUE="prefer_not" >Prefer not to say</label>
<input TYPE="hidden" NAME="hidden" VALUE="hidden">
</div>
</div>
<div class="buttons">
<input type="submit" style="padding:0 15px" id="question-submit" class="cta cta-submit corners final" value="View Results »" />
</div>
</form>
</div>
</div>
<!-- HIDE BOX END -->
</div>
</div><!-- /container content -->
</div>
<div id="footer-wrapper">
<div class="container">
<div class="row brands">
<img src="include/img/brand-benefit.jpg" />
<img src="include/img/brand-dyson.gif" />
<img src="include/img/brand-samsung.gif" />
<img src="include/img/brand-lor.jpg" />
<img src="include/img/brand-bose.gif" />
<img src="include/img/brand-clarins.jpg" />
<img src="include/img/brand-aa.gif" />
</div>
<div class="row customers">
<div class="span6">
<div class="corners mod-box mod-2">
<img src="include/img/pic-jo2.jpg" class="corners" />
<blockquote>
<p>"I can't believe it! I applied to 2 trials and got £180 of skin cream!"</p>
<small>Jo, Wales UK</small>
</blockquote>
</div>
</div>
<div class="span6">
<div class="corners mod-box mod-2">
<img src="include/img/pic-becka2.jpg" class="corners" />
<blockquote>
<p>"Free Android tablet! Thank you very much producttesters.co.uk!"</p>
<small>Becka, Hampshire UK</small>
</blockquote>
</div>
</div>
</div>
<!----
<div id="how-does-it-work" class="row">
<div class="span12"><h1>How does it work?</h1></div>
</div>
<div class="row">
<div class="span12">
<div class="accordion" id="questions">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#questions" href="#qOne">How do I get FREE Skin Creams?</a>
</div>
<div id="qOne" class="accordion-body">
<div class="accordion-inner">
<p>Did you know that many companies give away <strong>free samples</strong> of their products for people to try? How many you times have seen a
beauty product, perfume, or aftershave in Boots, Superdrug, or any other highstreet store that is <strong>free for you to try</strong>?
Have you ever seen a cosmetics or beauty product stand set-up in your local shopping centre offering <strong>Free</strong> trials?
Companies <strong>want</strong> as many people to <strong>try their products</strong> as possible to show how good they are.</p>
<p>We have access to a wide range of companies and sends you the product which is best for you to
<strong>try for free</strong>!</p>
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#questions" href="#qTwo">Is it really free?</a>
</div>
<div id="qTwo" class="accordion-body collapse">
<div class="accordion-inner">
<strong>Yes</strong>, you will really receive products <strong>free of charge</strong> to try.
Some companies require you to pay a shipping/postage cost, this will be clearly displayed
before you accept and is usually only a small amount (eg. UK price of up to four pounds (GBP), US price of up to six dollars (USD)).
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#questions" href="#qThree">I'm not sure, whats the catch?</a>
</div>
<div id="qThree" class="accordion-body collapse">
<div class="accordion-inner">
There is no catch; these are full beauty products available to you to try for <strong>free</strong>. Often these products are only available
in <strong>limited quantities</strong> and we can only reserve your application for a short time so <a href="#quiz" title="Apply now">apply now</a>!
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#questions" href="#qFour">Is it safe?</a>
</div>
<div id="qFour" class="accordion-body collapse">
<div class="accordion-inner">
<strong>Yes</strong>, totally. All the products you receive are already for sale in many highstreet shops. Testing a product only means that you
have received a free sample.
</div>
</div>
</div>
</div>
</div>
</div>
---->
<div class="row" align="center" width="100%"><div class="span12">
<a href="index.html#application" class="quizreturn-link cta corners" title="Apply Now!"><span>Claim Now!</span></a>
</div></div>
<footer>
<div class="player">
<div class="clearfix player__content">
<div class="js-player"></div>
<a href="#" class="js-play player-sprite player__play"></a>
<a href="#" class="js-pause player-sprite player__pause"></a>
<div class="player-sprite player__bar">
<div class="js-play-bar player-sprite player__bar__filler"></div>
</div>
</div>
<div class="js-no-solution player__update" style="display: none;">
To play the media you will need to either update your browser to a recent version or update your <a
href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
<p>© Copyright 2014 - Productesters.co.uk - All Rights Reserved</p>
<p>All trademarks on this web site whether registered or not, are the property of their respective owners. The authors of this web site are not sponsored by or affiliated with any of the third-party trade mark or third-party registered trade mark owners, and make no representations about them, their owners, their products or services.</p>
</footer>
</div>
</div>
<div id="user-process" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="userProcess" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
<h4 class="title-font">Submitting your answers... please wait...</h4>
</div>
<div class="modal-body">
<div class="carousel">
<div class="dealSearch">
<!-- Add your loading message -->
<h1 style="" id="loadMessage">Finding available products</h1>
<h1 style="display:none;" id="finishedMessage">
Success! Found products available for you!<br><p>
<img src="include/img/success.gif"></p>
</h1>
<!-- START: Rotating Images-->
<div id="rotating-item-wrapper">
<img class="rotating-item" alt="" src="include/img/skin1.gif">
<img class="rotating-item" alt="" src="include/img/skin2.gif">
<img class="rotating-item" alt="" src="include/img/skin3.gif">
<img class="rotating-item" alt="" src="include/img/skin4.gif">
<img class="rotating-item" alt="" src="include/img/skin5.gif">
<img class="rotating-item" alt="" src="include/img/skin6.gif">
<img class="rotating-item" alt="" src="include/img/skin7.gif">
<img class="rotating-item" alt="" src="include/img/skin8.gif">
<img class="rotating-item" alt="" src="include/img/skin9.gif">
<img class="rotating-item" alt="" src="include/img/skin10.gif">
<img class="rotating-item" alt="" src="include/img/skin12.gif">
<img class="rotating-item" alt="" src="include/img/skin13.gif">
</div>
<div id="pb"></div>
<div id="percentage"></div>
<div id="progression">
<div id="step1"><p>Submitting Answers</p></div>
<div id="step2"><p>Matching you to available products.</p></div>
<div id="step3"><p>Complete!</p></div>
</div>
<!-- END: Rotating images images -->
</div>
</div>
<div id="user-process-prgress-bar" class="progress progress-success progress-striped">
<div class="bar"></div>
</div>
</div>
</div>
<!--<script src="http://beautytesters.co.uk/include/img/pageJavascript.js"></script>-->
<!--<script src="http://beautytesters.co.uk/include/img/jquery-ui.min.js"></script>-->
<!--<script src="http://beautytesters.co.uk/include/img/jquery.countdown.min.js"></script>-->
<!--<script src="http://beautytesters.co.uk/include/img/load.js"></script>-->
<script type="text/javascript">
var next_url = "/";
var test = 0;
function carouselLoad() { //start after HTML, images have loaded
var redirectTime = 5000;
var messageLength = redirectTime;
$("#loadMessage").css('display', 'block');
$("#loadMessage").Loadingdotdotdot({
"speed": 400,
"maxDots": 4
});
setTimeout( function(){$('#progressContainer1, #rotating-item-wrapper').hide();} , messageLength);
var finishedMsg = $('#finishedMessage').html();
setTimeout(function() { $("#loadMessage").html(finishedMsg); $("#loadMessage").Loadingdotdotdot("Stop"); }, messageLength);
var val = 0;
var incrementTime = redirectTime / 100;
//alert(incrementTime);
var interval = setInterval(function(){
val = val + 1;
$('#pb').progressbar({ value: val});
$('#percentage').text(val + "%");
$('#step1').css("background-color", "#1E90FF");
if (val == 50){
$('#step2').css("background-color", "#1E90FF");
//alert('gothere');
}
if (val == 100){
$('#step3').css("background-color", "#1E90FF");
clearInterval(interval);
// setTimeout(function() { location.href = next_url; });
}
}, incrementTime );
var InfiniteRotator =
{
init: function()
{
//initial fade-in time (in milliseconds)
var initialFadeIn = 100;
//interval between items (in milliseconds)
var itemInterval = 100;
//cross-fade time (in milliseconds)
var fadeTime = 100;
//count number of items
var numberOfItems = $('.rotating-item').length;
//set current item
var currentItem = 0;
//show first item
$('.rotating-item').eq(currentItem).fadeIn(initialFadeIn);
//loop through the items
var infiniteLoop = setInterval(function(){
$('.rotating-item').eq(currentItem).fadeOut(fadeTime);
if(currentItem == numberOfItems -1){
currentItem = 0;
}else{
currentItem++;
}
$('.rotating-item').eq(currentItem).fadeIn(fadeTime);
}, itemInterval);
}
};