//path define
var rhbp="../images/menu";
var rhbpo=rhbp+"/out/";
var rhbph=rhbp+"/hover/";
//load header menu images

//define hover image 
var img_home_h=new Image();
var img_snap_h=new Image();
var img_how_h=new Image();
var img_video_h=new Image();
var img_agent_h=new Image();
var img_pricing_h=new Image();
var img_faq_h=new Image();
var img_contact_h=new Image();
var img_giving_h=new Image();

//define out image
var img_home_o=new Image();
var img_snap_o=new Image();
var img_how_o=new Image();
var img_video_o=new Image();
var img_agent_o=new Image();
var img_pricing_o=new Image();
var img_faq_o=new Image();
var img_contact_o=new Image();
var img_giving_o=new Image();

//load hover images
img_home_h.src=rhbph+"home.gif";
img_snap_h.src=rhbph+"snap.gif";
img_how_h.src=rhbph+"how.gif";
img_video_h.src=rhbph+"video.gif";
img_agent_h.src=rhbph+"agent.gif";
img_pricing_h.src=rhbph+"pricing.gif";
img_faq_h.src=rhbph+"faq.gif";
img_contact_h.src=rhbph+"contact.gif";
img_giving_h.src=rhbph+"giving.gif";

//load out images
img_home_o.src=rhbpo+"home.gif";
img_snap_o.src=rhbpo+"snap.gif";
img_how_o.src=rhbpo+"how.gif";
img_video_o.src=rhbpo+"video.gif";
img_agent_o.src=rhbpo+"agent.gif";
img_pricing_o.src=rhbpo+"pricing.gif";
img_faq_o.src=rhbpo+"faq.gif";
img_contact_o.src=rhbpo+"contact.gif";
img_giving_o.src=rhbpo+"giving.gif";

//hover loader
function cih(id){
	document.getElementById(id).src=eval("img_"+id+"_o.src");
}

//out loader
function cio(id){
	document.getElementById(id).src=eval("img_"+id+"_h.src");
}
