//imageMouseover.js
if (document.images) 
{

	btn_smokefree_off=new Image;btn_smokefree_off.src='images/btn-smokefree-off.gif';
	btn_smokefree_on=new Image;btn_smokefree_on.src='images/btn-smokefree-on.gif';

	btn_smokefree_in_off=new Image;btn_smokefree_in_off.src='/images/btn-smokefree-in-off.gif';
	btn_smokefree_in_on=new Image;btn_smokefree_in_on.src='/images/btn-smokefree-in-on.gif';

	facts_off=new Image;facts_off.src='images/facts-off.gif';
	facts_on=new Image;facts_on.src='images/facts-on.gif';

}
function imageSwap(location,imageName){
if(document.images)
document.images[location].src=eval(imageName+'.src');
}
