$(function() {
	$('div.content div.hot').flash(
	//	{src:'/p/holder_683x185.swf',width:683,height:185,wmode:'transparent'},
		{src:'/p/january-color-2.swf',width:683,height:185,wmode:'transparent'},
		{version:9}
	);
	$('div.content ul.quick li').hover(
		function() {
			imgsrc = $(this).attr('class');
			imgsrc = '/p/' + imgsrc + '-hover.png';
			$(this).children('dl').children('dt').children('a').children('img').attr('src',imgsrc);
			$(this).addClass('active');
		},
		function() {
			$(this).removeClass('active');
			imgsrc = $(this).attr('class');
			imgsrc = '/p/' + imgsrc + '.png';
			$(this).children('dl').children('dt').children('a').children('img').attr('src',imgsrc);
		}
	);
});
