File: /home/emblazeone/public_html/amaroseantiaging/slice/js/script.js
$(document).ready(function(){
$("body").on("click","a", function (event) {
event.preventDefault();
var id = $(this).attr('href'),
top = $(id).offset().top;
$('body,html').animate({scrollTop: top}, 1500);
});
});
$(document).ready(function(e) {
$(function(){
$('input:radio').change(function(){
$('input:radio').each(function(){
if($(this).prop('checked')) $(this).parents(".block_product").addClass("activecheckbox");
else $(this).parents(".block_product").removeClass("activecheckbox");
})
}).change();
})
});