document.getElementById("print").className="print";
document.getElementById("share").className="share";
document.getElementById("print").onmouseover = function() {
	document.getElementById("print-this").className = "print-sizes-holder";
	clearInterval(timePrint);
}
var timePrint;
document.getElementById("print").onmouseout = function() {
	timePrint = setTimeout("hidePrint()","750");
}
document.getElementById("close-print").onclick = function() {
	hidePrint();
}
var hidePrint = function () {
    document.getElementById("print-this").className = "print-sizes-holder preload";
}