﻿// JavaScript Document
jQuery(function(){
	jQuery(".part").hover(function(){
		jQuery(this).attr("class","greybg");
	},function(){
		jQuery(this).attr("class","whitebg");
	});
})
