$(document).ready(function(){
	$('.hot a').each(function(e){
		$(this).mouseover(function(){
			$('.hot a').removeClass('on')
			$(this).addClass('on')
			
			if(e==0)$('.hot .arrow').css({marginLeft:50})
			if(e==1)$('.hot .arrow').css({marginLeft:165})
			if(e==2)$('.hot .arrow').css({marginLeft:280})
			
			$('.hot .bg p').hide();
			$('.hot .bg p:eq('+e+')').show();
		})
	})
})
