$(document).ready(function(){
						   $("#slider").easySlider({
												   auto: true,
												   continuous: true,
												   numeric: true
												   });
						   });
window.onload = function(){
	var imgURL = [
				  /*"img/top/m-01.jpg","img/top/w-01.jpg","img/top/m-02.jpg","img/top/w-02.jpg","img/top/m-03.jpg"/*,"img/top/w-03.jpg","img/top/m-04.jpg","img/top/w-04.jpg"/*,"img/top/m-05.jpg"*/"img/top/m-01.jpg"
				  ];
	var n = Math.floor(Math.random() * imgURL.length);
	document.images["hotitem"].src = imgURL[n];
	} 
