// JavaScript Document
//页面加载事件，可以无限次调用，加载顺序按照代码顺序执行。
$(document).ready(function(){

$("#NagetiveUL>li").each(function()
	  {
           var dropId = "NagetiveDrop"+this.id.substring(2);
		    
		  this.onmouseover = function ()
		   {
			   $("#"+dropId).css({"display":"block"});							 
		    }
		   this.onmouseout = function()
		   {
			     $("#"+dropId).css({"display":"none"});								 
		   }
	  }
   );
});

$(document).ready(function(event) {
    $("#ProductList > li").each(function(i) {
    $(this).mouseover(function() { $(this).css("background", "#F1F1F1"); });
        $(this).mouseout(function() { $(this).css("background", "white"); });
    });
});

$(document).ready(function(event) {
$("#wordList > li").each(function(i) {
        $(this).mouseover(function() { $(this).css("background", "#F1F1F1"); });
        $(this).mouseout(function() { $(this).css("background", "white"); });
    });
});



