$(document).ready(function(){
		$("#template_header_navigation li").mouseover(function(){
				// Get the base image name
				imgName = $(this).find("img").attr("alt");
				
				// Replace the image with the new path
				$(this).find("img").attr("src", "http://www.capacity-360.com/wp-content/themes/capacity-360/images/" + imgName + "Roll.gif");
				
			}).mouseout(function(){
				// Get the base image name
				imgName = $(this).find("img").attr("alt");
				
				// Replace the image with the new path
				if ($(this).find("img").hasClass("template_header_navigation_selected")) {
					$(this).find("img").attr("src", "http://www.capacity-360.com/wp-content/themes/capacity-360/images/" + imgName + "Selected.gif");
				} else {
					$(this).find("img").attr("src", "http://www.capacity-360.com/wp-content/themes/capacity-360/images/" + imgName + ".gif");
				}
			});
	});
