Hi Jan, you need to try to clean up the code on the page these lines are outside of the closing head tag they need to be within the head tag otherwise strange behaviors can happen.
There is a second closing </head>, bottom line a page should only have 1 set opening and closing<head ></head> and <body > </body> tags.
</head><link href="css/lightbox.css" rel="stylesheet" />
<script type="text/javascript" src="js/prototype.js"></script>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/lightbox-2.6.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script>
//This provides the functionality for the page. The above script tag includes the most recent version of the jQuery library.
$(document).ready(function() { //initiates a jQuery onload function
$("#calcButton").click(function(){
var length = parseInt($("#tail").val()) - 5;
$("#suggest").val(parseInt($("#slingSelector1").val()) + length);
});
});
</script>
<script>
//This provides the functionality for the page. The above script tag includes the most recent version of the jQuery library.
$(document).ready(function() { //initiates a jQuery onload function
$("#wcalcButton").click(function(){
var wsize = parseInt($("#wslingSelector1").val());
var wdepth = parseInt($("#wtail").val()) - 5;
var shoulder = parseInt($("#shoulder").val());
var taper = 0;
if ($("#taper").val() === "") {
taper = 0;
} else {
taper = parseInt($("#taper").val());
}
var resultInches = Math.ceil(wsize + (0.5*taper) + shoulder + wdepth);
var resultCm = Math.ceil((wsize + (0.5*taper) + shoulder + wdepth) * 2.54);
var wlength = parseInt($("#wtail").val()) - 5;
$("#wsuggest").val(parseInt($("#wslingSelector1").val()) + wlength);
$("#wsize").val(parseInt($("#wslingSelector1").val()) + wlength);
$("#require").val(resultInches + " in (" + resultCm + " cm)");
});
});
</script>
</head> Looks like a duplicate to me<style type="text/css">
<!--
.detailimage {
vertical-align: bottom;
}
-->
</style>
<body onLoad="initLightbox()"> *** see note below
<script type="text/javascript" src="magiczoomplus/magiczoomplus.js"></script> <<<<<<<< within the head tag
<body> **** The body is already open this can be removed
Also many of the js scripts can be moved to the bottom of the page, as recommended for better page load time test your site here https://gtmetrix.com/ Don't be alarmed most can be fixed with little effort but makes a big difference to the overall health of the site.
Winners never quit, quitters never win
CSS and Responsive DesignsUser Manual for Ecommerce Templates