function menu(){

Images = new Array("http://www.gnourg.com/blog/wp-content/themes/gnourg/img/fa2.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/archivespic_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/archivestxt_l.gif",
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/artistpic_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/artisttxt_l.gif",
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/bookspic_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/bookstxt_l.gif",
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/gallerypic_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/gallerytxt_l.gif",
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/mainpic_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/newreadertxt_l.gif",
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/back_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/next_l.gif",
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/save_l.gif", 
	"http://www.gnourg.com/blog/wp-content/themes/gnourg/img/load_l.gif",

for(loop=0; loop < Images.length; loop++){

var LoadedImage=new Image();

LoadedImage.src=Images[loop];}}

function pop(src, pw, ph){

var ht = screen.height;

var wd = screen.width;

if (ht <= 480){ph = 380;}

else if ((ht <= 600) && (ht > 480)){ph = 500;}

else if ((ht <= 768) && (ht > 600)){ph = 668;}

else if ((ht <= 950) && (ht > 768)){ph = 780;}

var x=(screen.width-pw)/2;

var y=((screen.height-ph)/2)-20;

var features = "width=" + pw + ",height=" + ph + ",scrollbars=yes" + ",resizable=yes" + ",top=" + y + ",screenY=" + y + ",left=" + x + ",screenX=" + x;

var theWindow = window.open(src.getAttribute('href'),src.getAttribute('target') || '_blank',features);

theWindow.focus();}


