
/*PIDETÄÄN LAZYLOAD VANHEMPIA SELAIMIA VARTEN*/
$(document).ready(function() {
    $(".anc").anchorScroll();
	$("img").lazyload({ threshold : 200 });
});


$(document).ready( function() {
	$('li.cart').click( 
		function() {
			$(this).children().toggleClass('buy');
		});
});


$(document).ready( function() {
	  $('.chkOptions').click(
		function () {
		  var ntot = 0;
		  $('.chkOptions:checked').each(function () {
			ntot += parseInt($(this).attr('placeholder'));
		  });
		  $('.total_price').fadeIn(300);
		  $('#total').html(ntot);
		
		})
	  .change();
});



$(document).ready(function(){  
    $("a.show_contactinfo").click(function(event) { 
		event.preventDefault();	
		$('div.products').fadeOut(100);
		$('div.contactinfo').fadeOut(100).fadeIn(100);	
		$('div.total_price').fadeOut(100).fadeIn(100);	
		$('.vaihe').html('2/2');	
    });  
});  


$(document).ready(function(){  
    $("a.hide_contactinfo").click(function(event) { 
		event.preventDefault();	
		$('div.products').fadeIn(100);
		$('div.contactinfo').fadeOut(100);
		$('div.total_price').fadeIn(100);	
		$('.vaihe').html('1/2');	
    });  
});  



$(document).ready( function() {
	$('#ehdot_show').click( 
	function() {
		$('#ehdot_cont').show(1000);
	});


	$('#ehdot_close').click( 
	function() {
		$('#ehdot_cont').hide(1000);
	});

});

