// for Homepage
var guestbook_on = new Image();
var guestbook_off = new Image();
var mailing_on = new Image();
var mailing_off = new Image();
var gallery_on = new Image();
var gallery_off = new Image();
var wood_on = new Image();
var wood_off = new Image();
var glass_on = new Image();
var glass_off = new Image();
var ceramics_on = new Image();
var ceramics_off = new Image();
var bronze_on = new Image();
var bronze_off = new Image();
var tiny_on = new Image();
var tiny_off = new Image();
var about_on = new Image();
var about_off = new Image();
var contact_on = new Image();
var contact_off = new Image();
var news_on = new Image();
var news_off = new Image();
var collections_on = new Image();
var collections_off = new Image();
var fineart_on = new Image();
var fineart_off = new Image();
var painting_on = new Image();
var painting_off = new Image();
var photograph_on = new Image();
var photograph_off = new Image();
var consultancy_on = new Image();
var consultancy_off = new Image();
var s_collections_on = new Image();
var s_collections_off = new Image();
var publications_on = new Image();
var publications_off = new Image();
var prints_on = new Image();
var prints_off = new Image();

// for Homepage
guestbook_on.src = "/images1/guestbook_on.gif";
guestbook_off.src = "/images1/guestbook_off.gif";
mailing_on.src = "/images1/mailing_on.gif";
mailing_off.src = "/images1/mailing_off.gif";
gallery_on.src = "/images/gallery_on.gif";
gallery_off.src = "/images/gallery_off.gif";
wood_on.src = "/images/wood_on.gif";
wood_off.src = "/images/wood_off.gif";
bronze_on.src = "/images/bronze_on.gif";
bronze_off.src = "/images/bronze_off.gif";
glass_on.src = "/images/glass_on.gif";
glass_off.src = "/images/glass_off.gif";
ceramics_on.src = "/images/ceramics_on.gif";
ceramics_off.src = "/images/ceramics_off.gif";
tiny_on.src = "/images/tiny_on.gif";
tiny_off.src = "/images/tiny_off.gif";
about_on.src = "/images1/about_on.gif";
about_off.src = "/images1/about_off.gif";
contact_on.src = "/images1/contact_on.gif";
contact_off.src = "/images1/contact_off.gif";
news_on.src = "/images1/news_on.gif";
news_off.src = "/images1/news_off.gif";
collections_on.src = "/images/collections_on.gif";
collections_off.src = "/images/collections_off.gif";
consultancy_on.src = "/images1/consultancy_on.gif";
consultancy_off.src = "/images1/consultancy_off.gif";
fineart_on.src = "/images/fine_art_on.gif";
fineart_off.src = "/images/fine_art_off.gif";
painting_on.src = "/images/painting_on.gif";
painting_off.src = "/images/painting_off.gif";
photograph_on.src = "/images/photograph_on.gif";
photograph_off.src = "/images/photograph_off.gif";
s_collections_on.src = "/images/s_collections_on.gif";
s_collections_off.src = "/images/s_collections_off.gif";
publications_on.src = "/images/publications_on.gif";
publications_off.src = "/images/publications_off.gif";
prints_on.src = "/images/prints_on.gif";
prints_off.src = "/images/prints_off.gif";

function rollOver(imgName){
	document.images[imgName].src = eval(imgName + "_on.src");
}

function rollOut(imgName){
	document.images[imgName].src = eval(imgName + "_off.src");
}

function popURL(url){
	var popUp = window.open(url,"popWin","width=650,height=400,scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no");
}

