$(document).ready(function(){
	var img=$('.product').find('img');
	var anchor=$('.product-title').find('a');
	var thumb=$('.switch').find('li');
	var speed=1000;
	$(img).each(function(){
		$(this).hide();
	})
	$(anchor).each(function(){
		$(this).hide();
	})
	$(img).eq(0).show();
	$(anchor).eq(0).show();
	function makeSlideShow(){	
		$(img).each(function(){
			$(this).css('display','none');
		})
		for(var i=0;i<img.length;i++){
		
		}
		makeSlideShow();
	}
	//makeSlideShow();
})

