$(document).ready(function() {
	
	$('#center .exposed_items .item').hover(
		function () {
			$(this).addClass('hover');
		}, 
		function () {
			$(this).removeClass('hover');
		}
	);
	
	/* promotion fix */
	// $('.promotion .item:first').show();
	
	/* temp image */
	$('#tmp_img').delay(5000).fadeOut(400);
	
});
