function closeMe() {
document.getElementById("click_here").src="images/adhesive.jpg";
document.getElementById("coatings").src="images/coatings.jpg";
document.getElementById("stocks").src="images/stocks.jpg";
$("#div1").slideUp();
}

function showNewsDesc(mmm) {
$("#"+mmm +"").slideToggle();
//});
}

function hideNewsDesc(mmm) {
$("#"+mmm +"").slideUp();
}



$(function()
{
$("#click_here").click(function(event) {
event.preventDefault();
document.getElementById("click_here").src="images/adhesive_hover.jpg";
document.getElementById("coatings").src="images/coatings.jpg";
document.getElementById("stocks").src="images/stocks.jpg";
$("#div1").html('<input type="image" src="images/close.jpg" class="close" onclick="closeMe()" /><span style="font-weight:normal"><strong style="color:#A30046;">Permanent:</strong>  General adhesive suitable for most applications.<br /><br />								<strong style="color:#A30046;">Repositionable: </strong> Allows the label to be applied, removed, and reapplied on a variety of surfaces.<br /><br />																													 <strong style="color:#A30046;">Removable:</strong>  Allows label to be taken off a surface once applied without leaving pieces of the label or adhesive behind. <br /><br />																									<strong style="color:#A30046;"> Static-Cling: </strong> Static charge allows for adhesion without using a standard glue-based adhesive.  The labels can be easily and cleanly removed and repositioned from clean smooth surfaces, such as glass or enamel finishes.<br /><br />			<strong style="color:#A30046;">Wide-Temperature: </strong> Designed to adhere to cold (-65°) and hot (150°) temperatures.<br />	<br />	 <strong style="color:#A30046;">Opaque Adhesive: </strong> Blackout backing that prevents the application surface from "showing through" the label stock.  This is ideal for covering outdated or incorrect information.</span>'); 
$("#div1").slideDown();

});

$("#coatings").click(function(event) {
event.preventDefault();
document.getElementById("coatings").src="images/coatings_hover.jpg";
document.getElementById("click_here").src="images/adhesive.jpg";
document.getElementById("stocks").src="images/stocks.jpg";
$("#div1").html('<input type="image" src="images/close.jpg" class="close" onclick="closeMe()" /><span style="font-weight:normal"><strong style="color:#A30046;">Varnish:</strong>  Inexpensive coating applied during printing providing limited protection from cracking, peeling and flaking that can occur with frequently handled labels.  Also protects in cold environments like refrigerators and freezers.			<br /><br />																															<strong style="color:#A30046;">UV Clear Coat:</strong>  Applied after printing, a UV clear coat provides the label with a hard, semi-gloss finish able to protect against fingerprinting, abrasion, light surface moisture, chemicals and solvents.<br /><br />			<strong style="color:#A30046;">Laminate:</strong>  Premium protective poly film layer applied after labels are printed and dry.  This is the highest level of protection against handling, chemicals, abrasion, and moisture.</span>'); 
$("#div1").slideDown();
});

$("#stocks").click(function(event) {
event.preventDefault();
document.getElementById("stocks").src="images/stocks_hover.jpg";
document.getElementById("click_here").src="images/adhesive.jpg";
document.getElementById("coatings").src="images/coatings.jpg";
$("#div1").html('<input type="image" src="images/close.jpg" class="close" onclick="closeMe()" /><span style="font-weight:normal"><strong style="color:#A30046;">White Gloss:</strong>  A shiny and polished stock that is used when writing or typing on the label is not necessary.  <br /><br />																												<strong style="color:#A30046;">White Matte:</strong>  This dull finish is ideal for labels that need to be written or typed on. <br /><br />	<strong style="color:#A30046;"> Polypropylene: </strong> 2-mil clear plastic film stock <br /><br />								<strong style="color:#A30046;">Foil: </strong> Metallic paper available in both dull and shiny gold or silver. <br />	<br />			<strong style="color:#A30046;">Florescent: </strong> Bright Dayglo™ matte paper available in a wide variety of colors.<br /><br />		<strong style="color:#A30046;">White Vinyl:  </strong> This durable, waterproof white stock is ideal for indoor and outdoor environments where weather or harsh conditions may affect the label.<br />	<br />																	<strong style="color:#A30046;">Clear Vinyl:</strong> This durable, waterproof clear stock is ideal for indoor and outdoor environments where weather or harsh conditions may affect the label. <br />	<br />																	<strong style="color:#A30046;"> Polyester: </strong> Highly durable synthetic material designed to withstand outdoor applications where extreme conditions and abusive environmental factors like, moisture, chemicals, oils, and solvents threaten the label’s sustainability.  Polyester stocks are available with lamination in white, silver or gold. <br /><br />													<strong style="color:#A30046;"> Laser/Ink Jet: </strong> Intended for use with a laser or ink jet printer.<br /><br />					<strong style="color:#A30046;">Thermal: </strong> Thermal and direct thermal stocks are created for use with the industry-leading thermal printers, scanners and scales.  The stock activates at 185°.  The ultra-smooth surface and advanced adhesive allows for optimum scanability and adhesion to corrugated boxes and shrink-wrapped film.<br />	<br />																		<strong style="color:#A30046;">Static Cling Vinyl: </strong> Available in clear or white vinyl, static charge allows for adhesion without using a standard glue-based adhesive.  The labels can be easily and cleanly removed and repositioned from clean smooth surfaces, such as glass or enamel finishes.<br /><br />																											<strong style="color:#A30046;">Piggyback:</strong>  Two-liner labels created with a top label that is removed and re-applied to another surface. </span>'); 
$("#div1").slideDown();
});

});