couponImage = new Image();
couponImageRollover = new Image();

couponImage.src = "../images/special_a.jpg";
couponImageRollover.src = "../images/special_b.jpg";

$(document).ready(function(){

// Text rollover
$(".button").hover(
  function () {
    $(this).animate({color:'#7ab800'}, {queue:false,duration:150});
  },
  function () {
    $(this).animate({color:'#000000'}, {queue:false,duration:500});
  }
);

   });
   

// Image rollover
$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

function sampleHover(txt)
{
  //document.getElementById('desc').innerHTML="<img src='images/samples/" + txt + " />&nbsp;";
  document.getElementById("descImage").setAttribute('src',"images/samples/" + txt);
}

function sampleHoverOut()
{
 // var oldText="&nbsp;";
 // document.getElementById("desc").innerHTML=oldText;
}

function productClick(txt)
{
  if (txt == "7color"){
    var newText = "<h3>7 Color Process</h3><p>Each custom job can be run using one up to seven custom colors/coatings in-line. Providing some of the highest quality in the flexo label industry, our labels meet the demands of the most critical clients.</p>";
  }
  if (txt == "4color"){
    var newText = "<h3>4 Color Process</h3><p>In order to reproduce photographic or full color images, it is necessary to produce the job in a 4 color process. Through a process of separating the full color image into four colors, we are able to recreate your image to the highest standards.</p>";
  }
  if (txt == "pharm"){
    var newText = "<h3>Pharmecutical</h3><p>With our high quality printing, thorough inspection and ISO certified production methods, Lizard Label can provide many solutions for pharmaceutical needs.</p>";
  }
  if (txt == "thermal"){
    var newText = "<h3>Thermal Transfers</h3><p>Thermal transfer allows end users the ability to apply additional information to the labels we supply with a non-impact thermal transfer printer.</p>";
  }
  if (txt == "tamper"){
    var newText = "<h3>Tamper Evident</h3><p>For security applications, tamper evident labels provide a self-destructive indication that a product has been altered. Any attempt of removing, lifting, or breaking the bond that the label initially created renders the label destroyed. Commonly used for electronic equipment, pharmaceutical products and security related items.</p>";
  }
  if (txt == "security"){
    var newText = "<h3>Security Labels</h3><p>Anti-counterfeit technology that can be incorporated into your existing label production without any capitol investment. Invisible custom imaging that is verified by security readers on the retail end.</p>";
  }
  if (txt == "ir"){
    var newText = "<h3>IR Coupon</h3><p>Instant redeemable coupons offer a point-of-purchase solution to offering rebates and discounts to customers.</p>";
  }
  if (txt == "piggyback"){
    var newText = "<h3>Piggyback</h3><p>A dual layer label, piggyback labels provide a multi step application. In its first step both the bottom and top label are applied and distributed accordingly. In the second step, the top label is removed and applied in a secondary manner. Commonly used for marketing, mailing and record keeping.</p>";
  }
  if (txt == "pinfeed"){
    var newText = "<h3>Pin Feed</h3><p>For use with a tractor feed (pin feed) computer printer, pin feed labels allow the end user to add unique information to each of the labels we provide. Commonly used for shipping labels, inventory control and record keeping, pin feed labels can be supplied in fan-folded or roll form.</p>";
  }
  if (txt == "prime"){
    var newText = "<h3>Prime</h3><p>With our ability to print up to 7 colors in-line, including 4-color process, Lizard Label's level of expertise and quality give us an advantage in printing high end labels for prime use.</p>";
  }
  if (txt == "bar"){
    var newText = "<h3>Bar Code</h3><p>Whether for retail, inventory, tracking, or identification, bar code labels provide our customers with several levels of control and organization. With the ability to print UPC to Code 34, each label is scannable at the user level.</p>";
  }
  if (txt == "laminating"){
    var newText = "<h3>Laminating</h3><p>Providing a protective layer, lamination involves applying a clear film to the surface of the printed labels. Done in-line before the label is die cut to shape, lamination gives the label a higher resistance to the effects of usage.</p>";
  }
  if (txt == "uv"){
    var newText = "<h3>UV Varnish</h3><p>A distinct and protective addition, UV varnish is a final coating applied to the label surface. Part of the in-line print stations, UV varnish can be applied across the entire label or as a spot varnish.</p>";
  }
  if (txt == "rollfan"){
    var newText = "<h3>Roll/Fan-Folded/Sheet</h3><p>Whether for small marketing projects, labeling by hand or automatic application, we offer several options for final roll delivery.</p><p>For continuous form labels, fan-folded bundles of labels can be supplied.</p><p>When neither of these are the desired final form, individually cut sheets can be supplied with one to several labels per sheet.</p>";
  }
  if (txt == "embossing"){
    var newText = "<h3>Embossing</h3><p>Reaching a higher level of distinction sometimes calls for a more intricate and unique finished look to your labels. In addition to custom colors and shapes, it is also possible to emboss your foil labels, adding a multi level finish to the label surface.</p>";
  }  
  if (txt == "trade"){
    var newText = "<h3>Trade Pricing</h3><p>For our fellow industry partners, we offer select pricing when your customers needs are just outside your capabilities.</p>";
  }  
  if (txt == "design"){
    var newText = "<h3>Design &amp; Artwork</h3><p>You know you need a label, you just don't know where to start. Let us help you through the process of getting the label designed to your needs. Call us for assistance.</p>";
  }   
  document.getElementById("desc").innerHTML=newText + "&nbsp;";
}




function productOut()
{
  var oldText="<h1>Products & Capabilities</h1><p>A step ahead of the competition, Lizard Label is based on a foundation of experience and investment. From the start we gathered the necessary equipment and inventory to not only meet our customers’ needs, but to also help defray their costs. From our ability to run the most intricate of label jobs to the availability of over 1500 custom die shapes to choose from, your label needs are half solved the moment you simply choose Lizard. And with leadership of over 35 years in the flexo industry, our manufacturing staff knows what is important; quality is not something we strive for, quality is a given. Whether running 1-color basic labels or 7-color prime labels, our experience allows us to fulfill every job efficiently and on schedule.</p>";
  //document.getElementById("desc").innerHTML=oldText;
}