$(document).ready(function(){

//USER EDITABLE CODE BEGINS HERE

//if useDeal equals 1 the deal of the day will be displayed, if you set it equal to 0 then the default text will be used (i.e. 'Today's Unbeatable Deal has sold out!)
var useDeal=1;

//Link to the item
var itemLink="http://www.toolschest.com/tc75-6037.html";

//Image url - You can use a path to a thumbnail image being used on the home page or a section page as shown on the first line, or a thumbnail image 
//you have uploaded to the library as on the second line that is commented out.
var itemImageURL="http://site.unbeatablesale.com/dod/images/022212.gif";
//var itemImageURL="http://site.unbeatablesale.com/dod/images/022212.gif";

//Regular Price
var itemRegularPrice="$36.94";

//Sale Price if there is no sale price set it equal to 0 like the example below. 
var itemSalePrice="$29.55 Enter Code: ddsale222 to save";
//var itemSalePrice="0";

//item name
var itemName="130 Piece Trademark Tools Hand Tool Set";

//IMPORTANT - DO NOT EDIT ANY CODE BELOW THIS POINT
if(useDeal==1){

if (itemSalePrice==0)
{
$("#NoDeal div.text").html("<div id=\"dealContent\" style=\"width:230px; height:auto;\"><table><tr><td style=\"vertical-align:top; text-align:center;\"><a href="+itemLink+"><img src="+itemImageURL+"></a></td><td style=\"vertical-align:top; text-align:center;\"><a style=\"color:#ff1313; font-weight:bold; font-family:arial; font-size:8pt; text-decoration:none;\" href="+itemLink+">"+itemName+"</a><br/><div style=\"font-family:arial; font-size:8pt; color:#000000;\">Regular Price: "+itemRegularPrice+"</div></td></tr></table></div><br/><a href="+itemLink+" style=\"font-size:11pt;font-weight:bold;text-decoration:underline;\">SHOP NOW</a>");
}
else{
$("#NoDeal div.text").html("<div id=dealContent style=\"width:230px; height:auto;\"><table><tr><td style=\"vertical-align:top; text-align:center;\"><a href="+itemLink+"><img src="+itemImageURL+"></a></td><td style=\"vertical-align:top; text-align:center;\"><a href="+itemLink+">"+itemName+"</a><br/><div style=\"font-family:arial; font-size:8pt; color:#000000;\">Regular Price: "+itemRegularPrice+"</div><div style=\"font-family:arial; font-size:10pt; color:#ff1412; font-weight:bold;\">Sale Price: "+itemSalePrice+"</div></td></tr></table></div><br/><a href="+itemLink+" style=\"font-size:11pt;font-weight:bold;text-decoration:underline;\">SHOP NOW</a>");
}

}

else{

}

});
