﻿
jQuery("document").ready(function(){

});

function replaceImage(link) {
  jQuery(".main-product-image img").attr("src", link);
}

function alignFeatured() {
  var height = jQuery('.featured-product-info').height();
  var dif = height - 150;
  jQuery('.featured-product-info').css('bottom', parseInt(jQuery('.featured-product-info').css('bottom').replace('px', '')) + dif);
}


