jQuery(document).ready(function() {
	var show_free = true; //Change this variable if you want to make the free seal visible.
	/*If top and right both are set to 0, this will appear on the upper right corner of main slider container*/
	var show_free_top = "59";
	var show_free_right = "-58";
  // if there arriving at this page, directly redirect them to the front.
  if(document.location.pathname == '/') {
    var match_base = document.location.href.match('http://www.chocoville.com');

    if(match_base === null) {
      document.location.href = 'http://www.chocoville.com';
    }
  } else if(document.location.protocol == 'https:') {
    //put that pesky shadow where it should be
    jQuery('#popup_wall').show();
    jQuery('#popup_wall').css('zIndex', 4);
  }
  GaspareStore.init();
  if (show_free) {
	jQuery("#free_seal").css({
	"display"	: "block",
	"top" 		: show_free_top + "px",
	"right" 	: show_free_right + "px"
	});
  }
  /*
  if(jQuery('.popup_container').length !== 0) {
    jQuery('#progress').hide();
  }
  */
});
jQuery.fn.extend({
    disableSelection : function() {
            this.each(function() {
                    this.onselectstart = function() { return false; };
                    this.unselectable = "on";
                    jQuery(this).css('-moz-user-select', 'none');
            });
            return this;
    }
});

