$(function () {
	$('div.list_popup img').click( function() {
		$('div.list_popup').hide();
		$('div.list_popup img').attr('src', '');
		$(location).attr('hash', '');
		return false;
	});

	$('#list_box li a').click( function() {
		$('div.list_popup img').attr('src', $(this).attr('href'));
		$('div.list_popup .list_popup_text h2').html($(this).attr('title'));
		$('div.list_popup .list_popup_text h3').html($(this).attr('price'));
		$('div.list_popup .list_popup_text p').html($(this).attr('description'));
		$(location).attr('href', '#/'+$(this).attr('id'));
		$('div.list_popup').show();
		return false;
	});
});

