// JavaScript Document

$(function(){
	$("#home img").hover(
		function(){
			$(this).attr("src", "images/hover/rhome_btn.png");
		},
		function(){
			$(this).attr("src", "images/home_btn.png");
			
		}
	);
	$("#services img").hover(
		function(){
			$(this).attr("src", "images/hover/rservices_btn.png");
		},
		function(){
			$(this).attr("src", "images/services_btn.png");
			
		}
	);
	$("#resources img").hover(
		function(){
			$(this).attr("src", "images/hover/rresources_btn.png");
		},
		function(){
			$(this).attr("src", "images/resources_btn.png");
			
		}
	);
	$("#contact img").hover(
		function(){
			$(this).attr("src", "images/hover/rcontact_btn.png");
		},
		function(){
			$(this).attr("src", "images/contact_btn.png");
			
		}
	);
	$("#about img").hover(
		function(){
			$(this).attr("src", "images/hover/rabout_btn.png");
		},
		function(){
			$(this).attr("src", "images/about_btn.png");
			
		}
	);
	$("input[type='image']").hover(
		function(){
			$(this).attr("src", "images/search/rSearch_btn.png");
		},
		function(){
			$(this).attr("src", "images/search/search_btn.png");
			
		}
	);
				
});
