(function($) {
	
	$( "li.item" ).hover ( function ( e ) {
		$( this ).children('.preview').hide();
		$( this ).children('.detail').show();
	}, function () {
		$( this ).children('.preview').show();
		$( this ).children('.detail').hide();
	} );

})(jQuery);

