//if useDeal equals 1 the deal of the day will be displayed, if you set it equal to 0 then the default image will be used.
var useDeal=0;

//Link to the item
var itemLink="http://www.boncui.com/sosywisthesy.html";

//Image url
var itemImageURL="http://site.unbeatablesale.com//dod/images/nuvi.jpg";

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

//Sale Price if there is no sale price set it equal to 0 like the example below.
var itemSalePrice="$129.07";
//var itemSalePrice="0";



//item name
var itemName="Garmin Nuvi 205";





//do not edit any code below this point
if(useDeal==1){

document.getElementById('HideDealOfTheDay').style.display = 'none';


if (itemSalePrice==0)
{
document.write("<div style=\"position:relative; height:112px; width:197px; background-image: url(http://lib.store.yahoo.net/lib/yhst-28355172338643/dealoftheday.jpg);\" id=DealofTheDay><div id=dealContent style=\"width:170px; height:87px; position:absolute; top:23px; left:15px;\"><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></div>");
}
else{
document.write("<div style=\"position:relative; height:112px; width:197px; background-image: url(http://lib.store.yahoo.net/lib/yhst-28355172338643/dealoftheday.jpg);\" id=DealofTheDay><div id=dealContent style=\"width:170px; height:87px; position:absolute; top:23px; left:15px;\"><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><div style=\"font-family:arial; font-size:8pt; color:#ff1412; font-weight:bold;\">Sale Price: "+itemSalePrice+"</div></td></tr></table></div></div>");
}

}

else{

}
