﻿// JavaScript Document

    $(document).ready(function() {
    
		$(".main-tr").hover(
				function(){
						$(this).css("background-color","#fcfcfc");
				},
				function(){
						$(this).css("background-color","#ffffff");
				}
		);
    });
