//imageMouseover.js
if (document.images) 
{
	faq_off=new Image;faq_off.src='/Images/tab-faqs-off.gif';
	faq_on=new Image;faq_on.src='/Images/tab-faqs-on.gif';

	about_off=new Image;about_off.src='/Images/tab-about-off.gif';
	about_on=new Image;about_on.src='/Images/tab-about-on.gif';

	contact_off=new Image;contact_off.src='/Images/tab-contact-off.gif';
	contact_on=new Image;contact_on.src='/Images/tab-contact-on.gif';

	account_off=new Image;account_off.src='/Images/tab-account-manager-off.gif';
	account_on=new Image;account_on.src='/Images/tab-account-manager-on.gif';

	featured_off=new Image;featured_off.src='/Images/tab-featured-artist-off.gif';
	featured_on=new Image;featured_on.src='/Images/tab-featured-artist-on.gif';

	music_off=new Image;music_off.src='/Images/tab-music-off.gif';
	music_on=new Image;music_on.src='/Images/tab-music-on.gif';

	ebooks_off=new Image;ebooks_off.src='/Images/tab-ebooks-off.gif';
	ebooks_on=new Image;ebooks_on.src='/Images/tab-ebooks-on.gif';

	poetry_off=new Image;poetry_off.src='/Images/tab-poetry-off.gif';
	poetry_on=new Image;poetry_on.src='/Images/tab-poetry-on.gif';

	home_off=new Image;home_off.src='/Images/tab-home-off.gif';
	home_on=new Image;home_on.src='/Images/tab-home-on.gif';
}
function imageSwap(location,imageName){
    if(document.images)
    {
        document.images[location].src=eval(imageName+'.src');
    }
}
