$(document).ready(function(){ 
						   $(".fade").fadeTo("slow", 0.80); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $(".fade").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.80); // This should set the opacity back to 30% on mouseout
						   });
						   });
						   
function randomSign(){
	number_of_quotes = 4;
	var random_quote = Math.floor(Math.random() * number_of_quotes)+1;
	var quoteBox = document.getElementById('quoteBox');
	quoteBox.style.backgroundImage = "url(images/hangingsign"+random_quote+".jpg)";
}

function calcTotalAndShipping(){
	var price_veto = 249;
	var price_rb = 459;
	var shipping_veto = 49;
	var shipping_rb = 99;
	
	var totalContainer = document.getElementById("totalContainer");
	var shippingContainer = document.getElementById("shippingContainer");
	var totalInput = document.getElementById("totalInput");
	var shippingInput = document.getElementById("shippingInput");
	var veto = document.getElementById("VETO-antal").value;
	var rb = document.getElementById("RB-antal").value;
	var shippingCost = veto*shipping_veto +rb*shipping_rb ;
	var totalCost = shippingCost + veto*price_veto +rb*price_rb ;
	if(totalCost >= 0 && shippingCost >=0){
		shippingContainer.innerHTML = shippingCost +" kr";
		shippingInput.value = shippingCost +" kr";
		totalContainer.innerHTML = totalCost +" kr";
		totalInput.value = totalCost +" kr";
	}
	
}
