﻿function show(argElementId) {
    document.getElementById(argElementId).style.display = 'block';
}

function hide(argElementId) {
    document.getElementById(argElementId).style.display = 'none';
}

function toggle(argElementId) {
    obj = document.getElementById(argElementId);
    
    if (obj.style.display == 'block') {
        hide(argElementId);
    } else {
        show(argElementId);
    }
}

if ($.browser.msie && (parseInt($.browser.version) < 7)) {
	$(document).ready(function(){
		$("img.wishListMenuShadeImg").css('display', 'block');
		$("img.wishListMenuShadeImg").attr("src","/assets/images/x.gif");
	});
}