
$(document).ready(function() {



		   
						   
$.getScript('http://jquery-translate.googlecode.com/files/jquery.translate-1.3.2.min.js', function(){ //when the script is loaded
$.translate(function(){ //when the Google Language API is loaded
$.translate().ui('select', 'option') //generate dropdown


.change(function(){
$('#translation').translate( 'en', { //revert to english first
not: 'select, pre'
})

.translate( 'en',  $(this).val(), {
not: 'select, pre',
async:  true,
toggle: true,
walk: false
});
})
 .val('English') //select English as default
 .appendTo('#translation-menu'); //insert the dropdown to the page
});
});

	var randomImages = ['home-bg1','home-bg2'];
  var rndNum = Math.floor(Math.random() * randomImages.length);
  $("#promo-banner").css({ background: "url(/images/" + randomImages[rndNum] + ".jpg) no-repeat" });
						   
	var currentId = $(".productTextInput").attr('id');

	
	if (currentId == "Units_3163572") {
		$('#rates').html('Inc. of VAT <span style="font-size:10px;">(Gifted bottle is vat free)</span>');
		$('.price').html('<strong>&#163;158.00</strong>');
		$('#Units_3163572').attr('readonly', true);



	};
	
		$('div.YDHR75tEN').html('Inc. of VAT <span style="font-size:10px;">(Gifted bottle is vat free)</span>');
		$('#YDHR75tEN').html('&#163;158.00');

$('#quan-YDHR75tEN').html('<a href="/buy-water-purification-systems/buy-one-donate-one-lifesaver-bottle-4000"><img src="/Images/shop-buy-now.gif" alt="BUY NOW" height="30" width="88"></a>');
});

sfHover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
