
// <![CDATA[
function showhide() {
document.getElementById('currency_1').style.display = 'none';
document.getElementById('currency_2').style.display = '';
}
function showmsgcurrency(   ) {
var currency_combo = document.getElementById('currency_combo');
var CurName = document.getElementById('CurName');
CurName.innerHTML = document.getElementById('currency_combo').value;
document.getElementById('currency_1').style.display = '';
document.getElementById('currency_2').style.display = 'none';
}
sfHover = function () {
var sfEls = document.getElementById("navbar").getElementsByTagName("li");
for (var i = 0; i < sfEls.length; i++) {
sfEls[i].onmouseover = function () {
this.className += " hover";
}
sfEls[i].onmouseout = function () {
this.className = this.className.replace(new RegExp(" hover\\b"), "");
}
}
}
function ShopTrendsDivShowHide(getDivID) {
    var divShopTrends = document.getElementById('divShopTrends');
    var divShopPrice = document.getElementById('divShopPrice');
    var divShopColor = document.getElementById('divShopColor');

    var divShopTrendsHead = document.getElementById('divShopTrendsHead');
    var divShopPriceHead = document.getElementById('divShopPriceHead');
    var divShopColorHead = document.getElementById('divShopColorHead'); 

    divShopTrends.style.display = getDivID == 'Trends' ? '' : 'none';
    divShopPrice.style.display = getDivID == 'Price' ? '' : 'none';
    divShopColor.style.display = getDivID == 'Color' ? '' : 'none';

    divShopTrendsHead.style.background = getDivID == 'Trends' ? 'url(images/SHOP-BY-TRENDS.png) repeat 100%' : '';
    divShopPriceHead.style.background = getDivID == 'Price' ? 'url(images/SHOP-BY-TRENDS.png) repeat 100%' : '';
    divShopColorHead.style.background = getDivID == 'Color' ? 'url(images/SHOP-BY-TRENDS.png) repeat 100%' : '';

    

}
/*if (window.attachEvent) window.attachEvent("onload", sfHover);*/
// ]]>

