// Homepage
var imagesDir = '/is-bin/intershop.static/WFS/WHWC-WHWC-Site/-/en_US/images/';

function add_rollover(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "add_rollover.jpg)";
}
function add_rollover_out(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "add.jpg)";
}
function add_rollover_out_green(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "add_green.jpg)";
}

function add_pip(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "add_pip_rollover.gif)";
}

function add_pip_rollover(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "add_pip.gif)";
}

function remove_rollover(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "cart-remove-rollover.gif)";
}
function remove_rollover_out(tagName)
{
	tagName.style.backgroundImage="url(" + imagesDir + "cart-remove.gif)";
}

function orange_menu_on(tag_td) {
	tag_td.style.background = "#B05700";
}

function orange_menu_out(tag_td) {
	tag_td.style.background =  "#C86E13";
}

function emty_input(tag_input) {
	if (tag_input.value != "") {
		tag_input.value = "";
	}   	
}

function restore_input(tag_input, init_value) {
	if (tag_input.value == "") {
		tag_input.value = init_value;
	}
}

