var site_url = "http://www.little-munchkins.com.au/";

girls_clothing = new Image;
girls_clothing2 = new Image;
boys_clothing = new Image;
boys_clothing2 = new Image;

menu00a = new Image;
menu00b = new Image;
menu01a = new Image;
menu01b = new Image;
menu02a = new Image;
menu02b = new Image;
menu03a = new Image;
menu03b = new Image;

girls_clothing.src = "images/girls_clothing.jpg";
girls_clothing2.src = "images/girls_clothing2.jpg";
boys_clothing.src = "images/boys_clothing.jpg";
boys_clothing2.src = "images/boys_clothing2.jpg";

menu00a.src = "images/menu00a.jpg";
menu00b.src = "images/menu00b.jpg";
menu01a.src = "images/menu01a.jpg";;
menu01b.src = "images/menu01b.jpg";
menu02a.src = "images/menu02a.jpg";
menu02b.src = "images/menu02b.jpg";
menu03a.src = "images/menu03a.jpg";
menu03b.src = "images/menu03b.jpg";


n = (document.layers) ? 1 : 0;
ie = (document.all) ? 1 : 0;

function rollover(id, roll_class)
{
	if(document.getElementById)
	{
		moElement = document.getElementById(id);
		moElement.className = roll_class;
	}
	
	if(n)
		document.layers[id].className = roll_class;
	if(ie)
		document.all[id].className = roll_class;
}

function set_bg_image(id, image_url)
{
	obj = document.getElementById(id);
	
	if (obj)
	{
		obj.style.backgroundImage = "url(" + image_url + ")";
	}
}

function submit_cat_form(cat_id, url_cat_name)
{
	id_input = document.createElement('input');
	id_input.setAttribute('name', 'cat_id');
	id_input.setAttribute('value', cat_id);
	
	document.cat_form.appendChild(id_input);
	document.cat_form.action = site_url + 'kids-clothing-catalogue/' + url_cat_name;
	document.cat_form.submit();
	document.cat_form.removeChild(id_input);
}