
var cached=0;

if (document.images){

the_profile_off = new Image()
the_profile_off.src = "/images/nav/profile.gif"
the_profile_on = new Image()
the_profile_on.src = "/images/nav/profile_on.gif"

the_news_off = new Image()
the_news_off.src = "/images/nav/news.gif"
the_news_on = new Image()
the_news_on.src = "/images/nav/news_on.gif"

the_contact_off = new Image()
the_contact_off.src = "/images/nav/contact.gif"
the_contact_on = new Image()
the_contact_on.src = "/images/nav/contact_on.gif"

the_licensing_off = new Image()
the_licensing_off.src = "/images/nav/licensing.gif"
the_licensing_on = new Image()
the_licensing_on.src = "/images/nav/licensing_on.gif"

the_merchandise_off = new Image()
the_merchandise_off.src = "/images/nav/merchandise.gif"
the_merchandise_on = new Image()
the_merchandise_on.src = "/images/nav/merchandise_on.gif"

the_gallery_off = new Image()
the_gallery_off.src = "/images/nav/gallery.gif"
the_gallery_on = new Image()
the_gallery_on.src = "/images/nav/gallery_on.gif"

the_blog_off = new Image()
the_blog_off.src = "/images/nav/blog.gif"
the_blog_on = new Image()
the_blog_on.src = "/images/nav/blog_on.gif"


the_abstract_off = new Image()
the_abstract_off.src = "/images/subnav/abstract.gif"
the_abstract_on = new Image()
the_abstract_on.src = "/images/subnav/abstract_on.gif"

the_floral_off = new Image()
the_floral_off.src = "/images/subnav/floral.gif"
the_floral_on = new Image()
the_floral_on.src = "/images/subnav/floral_on.gif"

the_mini_off = new Image()
the_mini_off.src = "/images/subnav/mini.gif"
the_mini_on = new Image()
the_mini_on.src = "/images/subnav/mini_on.gif"

the_people_off = new Image()
the_people_off.src = "/images/subnav/people.gif"
the_people_on = new Image()
the_people_on.src = "/images/subnav/people_on.gif"

the_still_life_off = new Image()
the_still_life_off.src = "/images/subnav/still_life.gif"
the_still_life_on = new Image()
the_still_life_on.src = "/images/subnav/still_life_on.gif"

the_mailing_list_off = new Image()
the_mailing_list_off.src = "/images/subnav/mailing_list.gif"
the_mailing_list_on = new Image()
the_mailing_list_on.src = "/images/subnav/mailing_list_on.gif"

the_view_basket_off = new Image()
the_view_basket_off.src = "/images/subnav/view_basket.gif"
the_view_basket_on = new Image()
the_view_basket_on.src = "/images/subnav/view_basket_on.gif"

the_giclees_off = new Image()
the_giclees_off.src = "/images/subnav/giclees.gif"
the_giclees_on = new Image()
the_giclees_on.src = "/images/subnav/giclees_on.gif"

the_poetry_off = new Image()
the_poetry_off.src = "/images/subnav/poetry.gif"
the_poetry_on = new Image()
the_poetry_on.src = "/images/subnav/poetry_on.gif"

the_calendar_off = new Image()
the_calendar_off.src = "/images/subnav/calendar.gif"
the_calendar_on = new Image()
the_calendar_on.src = "/images/subnav/calendar_on.gif"

the_homeware_off = new Image()
the_homeware_off.src = "/images/subnav/homeware.gif"
the_homeware_on = new Image()
the_homeware_on.src = "/images/subnav/homeware_on.gif"

the_jewellery_off = new Image()
the_jewellery_off.src = "/images/subnav/jewellery.gif"
the_jewellery_on = new Image()
the_jewellery_on.src = "/images/subnav/jewellery_on.gif"

the_next_off = new Image()
the_next_off.src = "/images/next_off.gif"
the_next_on = new Image()
the_next_on.src = "/images/next_on.gif"

the_previous_off = new Image()
the_previous_off.src = "/images/previous_off.gif"
the_previous_on = new Image()
the_previous_on.src = "/images/previous_on.gif"

the_back_off = new Image()
the_back_off.src = "/images/back_off.gif"
the_back_on = new Image()
the_back_on.src = "/images/back_on.gif"

the_read_poem_off = new Image()
the_read_poem_off.src = "/images/read_poem.gif"
the_read_poem_on = new Image()
the_read_poem_on.src = "/images/read_poem_on.gif"




cached=1;
}

function imageOn(imgName) {
	if (cached==1) {
	lineOn = eval("the_" + imgName + "_on.src");
	document [imgName].src= lineOn;
	}
}

function imageOff(imgName) {
	if (cached==1) {
	lineOff = eval("the_" + imgName + "_off.src");
	document [imgName].src= lineOff;
	}
}


