function isImg(text){
  var imgReg=/^#(https?:\/\/)?www\.([a-zA-Z0-9]|[\/\._-])+\.(jpg|gif|png)$/;
  return imgReg.test(text);
}

function modifyUI(){
  
}

function uploadOnlineImg(){
  
  //Check the hash value
  if(isImg(location.hash)){
    //Hide steps
    $(".steps").css("display","none");
    
    //Remove "#"
    imgUrl=location.hash.substring(1);
    
    //Hide frontside tools
    $(".frontSide.tools").css("visibility", "hidden");
    
    //Show the picture
    $(".postcardImage")[0].src=imgUrl;
  }
}

$(document).ready(function() {
  $("#contentGradient h1").html("We are working on new services, and will come back soon!");
  $("#contentGradient span strong").remove()
  $("#contentGradient span :first-child").next().next().remove();
  $("#contentGradient span :first-child").next().next().remove();
});


