/**---------------------------------
 * top.js
 ---------------------------------*/

//i

$(function(){
	$("div#ctArea .indexWrap .productList li").hover(function() {
			$(this).addClass('over');
		}, 
		function() {
			$(this).removeClass('over');
			}
		);
});


