// JavaScript Document


(function($) {
	
	 mouseh=function()
	{
		$(".aboutus").hover(function() {
		$(this).attr("src","images/aboutus-hover.png");
			}, function() {
		$(this).attr("src","images/aboutus.png");
		});
		$(".contactus").hover(function() {
		$(this).attr("src","images/contactus-hover.png");
			}, function() {
		$(this).attr("src","images/contactus.png");
	});
	$(".costs").hover(function() {
		$(this).attr("src","images/costs-hover.png");
			}, function() {
		$(this).attr("src","images/costs.png");
	});
	$(".blog").hover(function() {
		$(this).attr("src","images/blog-hover.png");
			}, function() {
		$(this).attr("src","images/blog.png");
	});
		$(".media").hover(function() {
		$(this).attr("src","images/media-hover.png");
			}, function() {
		$(this).attr("src","images/media.png");
	});
	$(".projects").hover(function() {
		$(this).attr("src","images/projects-hover.png");
			}, function() {
		$(this).attr("src","images/projects.png");
	});
	$(".program").hover(function() {
		$(this).attr("src","images/program-hover.png");
			}, function() {
		$(this).attr("src","images/program.png");
	});
	$(".apply").hover(function() {
		$(this).attr("src","images/apply-hover.png");
			}, function() {
		$(this).attr("src","images/apply.png");
	});
	};
})(jQuery);


