$(document).ready(function(){
	
	// $('#img-preview img').attr('src', $('#pic li:first a').attr('href'));
	
	// $('#img-preview img').attr('src', $('#pic li:first a').attr('href'));
	
	$('#pic li a').hover(function(e){
		$('#img-preview img').attr('src', $(this).attr('href'));
	});
	
	$('#pic li a').click(function(e){
		e.preventDefault();
	});
	
});
